| 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 |
| 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]); |