-coalece / +adjoin

IMagick is a native PHP extension to create and modify images using the ImageMagick API. ImageMagick Studio LLC did not write nor does it maintain the IMagick extension, however, IMagick users are welcome to discuss the extension here.
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: -coalece / +adjoin

Post 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')
Post Reply