/[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.10.2.8, Wed Mar 18 10:09:02 2009 UTC revision 1.10.2.9, Fri Apr 17 17:58:27 2009 UTC
# Line 1  Line 1 
1  <?php  // $Id: imageapi_imagemagick.module,v 1.10.2.7 2009/01/05 23:00:00 drewish Exp $  <?php  // $Id: imageapi_imagemagick.module,v 1.10.2.8 2009/03/18 10:09:02 drewish Exp $
2    
3  /**  /**
4   * @file   * @file
# Line 190  function _imageapi_imagemagick_convert_e Line 190  function _imageapi_imagemagick_convert_e
190      1 => array('pipe', 'w'), // stdout      1 => array('pipe', 'w'), // stdout
191      2 => array('pipe', 'w')  // stderr      2 => array('pipe', 'w')  // stderr
192    );    );
193    if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes)) {    if ($h = proc_open($convert_path .' '. $command_args, $descriptors, $pipes, $_SERVER['DOCUMENT_ROOT'])) {
194      $output = '';      $output = '';
195      while (!feof($pipes[1])) {      while (!feof($pipes[1])) {
196        $output .= fgets($pipes[1]);        $output .= fgets($pipes[1]);

Legend:
Removed from v.1.10.2.8  
changed lines
  Added in v.1.10.2.9

  ViewVC Help
Powered by ViewVC 1.1.2