I try to convert a eps file to a png in PHP using Imagemagick.
exec('convert /tmp/test.eps /tmp/test.png'); // Won't create any file!?
exec('convert /tmp/picture.png /tmp/picture_copy.png'); // This works
But, if I try to convert the EPS in a shell, that works...
convert /tmp/test.eps /tmp/test.png
Why does it work in the shell, but not PHP? I do not even receive any error/warning messages...