installation problem ImageMagick

MagickWand for PHP is an object-oriented PHP interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning MagickWand for PHP.
Post Reply
bhavya

installation problem ImageMagick

Post by bhavya »

I m developing a application using php.in my task i need to convert .pdf files to .jpg using php.so i m trying to install this imagemagick tool but i m not ble to get the result for the command that was specified during the setup.
convert logo:logo.milf
mdisplay logo.milf

its saying cannot find logo.milf.

can anyone please help me do about installation.
Thanks
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: installation problem ImageMagick

Post by el_supremo »

The convert command needs to have a space after "logo:" and the file format is not milf, it's miff.

Code: Select all

convert logo: logo.miff
mdisplay logo.miff
Pete
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.
bhavya

Re: installation problem ImageMagick

Post by bhavya »

i typed it wrongly i did .miff only
still not working
its saying logo.miff not found
bhavya

Re: installation problem ImageMagick

Post by bhavya »

Space after logo: worked
Thanku very much
Post Reply