Page 1 of 1
ImageMagick available formats
Posted: 2012-06-29T08:38:17-07:00
by hakermania
Hello there! I am developing an application which uses the command 'convert' so as to convert all the images specified by the user to a desired format.
However, I don't know what formats are available from convertion from -> to.
How can I see them?
Thanks a lot!
Re: ImageMagick available formats
Posted: 2012-06-29T08:50:32-07:00
by Bonzo
See here for all possible formats but they may need extra delegtes :
http://www.imagemagick.org/script/forma ... j7h55ioit6
Run this to find what are supported on your system: identify -list format
r = read w= write
Re: ImageMagick available formats
Posted: 2012-06-29T09:40:58-07:00
by hakermania
Thanks

!
I have installed imagemagick through the repositories of Ubuntu. If the users have installed the same imagemagick version through the same repositories, we will have the same r/w capabilities as for image files. Am I right?
Re: ImageMagick available formats
Posted: 2012-06-29T10:50:58-07:00
by Bonzo
Your reasoning makes sense

Re: ImageMagick available formats
Posted: 2012-06-29T16:45:30-07:00
by hakermania
Nice, thanks a lot for helping me out!
Re: ImageMagick available formats
Posted: 2012-06-29T17:11:00-07:00
by glennrp
I have installed imagemagick through the repositories of Ubuntu. If the users have installed the same imagemagick version through the same repositories, we will have the same r/w capabilities as for image files. Am I right?
You also must have installed the same set of "delegates" for any formats that require delegate support. Unfortunately, "-list format" does not tell you whether a delegate is used or not; however, you can type "convert -list delegate" to find out which formats require use of a delegate.