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!
ImageMagick available formats
-
- Posts: 5
- Joined: 2012-06-29T08:35:46-07:00
- Authentication code: 13
Re: ImageMagick available formats
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
Run this to find what are supported on your system: identify -list format
r = read w= write
-
- Posts: 5
- Joined: 2012-06-29T08:35:46-07:00
- Authentication code: 13
Re: ImageMagick available formats
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?

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
Your reasoning makes sense 

-
- Posts: 5
- Joined: 2012-06-29T08:35:46-07:00
- Authentication code: 13
Re: ImageMagick available formats
Nice, thanks a lot for helping me out!
Re: ImageMagick available formats
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.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?