Page 1 of 1

Re: -coalece / +adjoin

Posted: 2010-08-06T10:46:22-07:00
by fmw42
Is this for MagickStudio or just PHP? If the latter, it is posted to the wrong forum, I expect.

When using PHP exec on a server, you generally need to supply the full path to convert. For example:

exec('/usr/local/bin/convert ... ')

Find out the full path to convert for your system.

Try

system('which convert')

or

system('type convert')