Re: PHP EXECUTION STOPPED
Posted: 2010-08-08T12:13:20-07:00
post your PHP command
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=16811
I don't understand the purpose of this command -- it seems like it should do nothing as your are compositing a null: image at no offests (-geometry +0+0).exec("/usr/local/ImageMagick/bin/convert uploads/filename null: filename -geometry +0+0 -layers Composite filename ")
Code: Select all
<?php
$array=array();
echo "<pre>";
exec("/usr/local/ImageMagick/bin/convert uploads/filename null: filename -geometry +0+0 -layers Composite filename 2>&1", $array);
echo "<br>".print_r($array)."<br>";
echo "</pre>";
?>