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