/[drupal]/contributions/modules/imageapi/imageapi_imagemagick.module
ViewVC logotype

Diff of /contributions/modules/imageapi/imageapi_imagemagick.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.17.2.3, Wed Mar 18 07:59:56 2009 UTC revision 1.17.2.4, Fri Apr 17 17:58:03 2009 UTC
# Line 1  Line 1 
1  <?php  // $Id: imageapi_imagemagick.module,v 1.17.2.2 2009/02/12 16:41:57 drewish Exp $  <?php  // $Id: imageapi_imagemagick.module,v 1.17.2.3 2009/03/18 07:59:56 drewish Exp $
2    
3  /**  /**
4   * @file   * @file
# Line 191  function _imageapi_imagemagick_convert_e Line 191  function _imageapi_imagemagick_convert_e
191      1 => array('pipe', 'w'), // stdout      1 => array('pipe', 'w'), // stdout
192      2 => array('pipe', 'w')  // stderr      2 => array('pipe', 'w')  // stderr
193    );    );
194    if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes)) {    if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes, $_SERVER['DOCUMENT_ROOT'])) {
195      $output = '';      $output = '';
196      while (!feof($pipes[1])) {      while (!feof($pipes[1])) {
197        $output .= fgets($pipes[1]);        $output .= fgets($pipes[1]);

Legend:
Removed from v.1.17.2.3  
changed lines
  Added in v.1.17.2.4

  ViewVC Help
Powered by ViewVC 1.1.2