help!the problem of install magick

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
RXGX

Re: help!the problem of install magick

Post by RXGX »

I have the same problem only with PNGs. The PNG developer library is installed but PNG is missing from the coders and delegates.xml. If you are missing the JPG entry from delegates.xml and the JPG.la file from coders, then it wasn't compiled with ImageMagick.

My Delegates File: /usr/local/lib/ImageMagick-6.3.2/config/delegates.xml
My Coders: /usr/local/lib/ImageMagick-6.3.2/modules-Q16/coders/
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: help!the problem of install magick

Post by anthony »

jimever, you speciay an input image, but no output image. As the image filename is the last argument it is thought to be the output image, so to IM you have not input image to rotate or save!

Try this instead

Code: Select all

convert -rotate 90 test.jpg output.jpg
As for what formats IM can handle RXGX has that wrong too.
Use

Code: Select all

convert -list format
to see what formats IM knows about and can handle! Delegates is external programs to increase the formats Im knows about, not a list of formats Im can deal with.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply