Page 1 of 1
'identify -list format' output
Posted: 2007-10-30T09:11:53-07:00
by eldiener
To find out about formats which ImageMagick supports and the corresponding possible format strings of the image.magick() ( Magick++ ) member function as well as the appropriate IM_MOD needed, I use the 'identify list format' command. I have one question about the output. What does an asterisk ( * ) mean after the name of a particular format ? Most formats have the asterisk after them but some do not.
Re: 'identify -list format' output
Posted: 2007-10-30T10:40:17-07:00
by magick
At the bottom of the
output you see
The asterisk means the format can be read and written directly in memory without first reading/writing the file on disk. Native blob support is more efficient/faster.
Re: 'identify -list format' output
Posted: 2007-10-31T04:32:21-07:00
by eldiener
magick wrote:At the bottom of the
output you see
The asterisk means the format can be read and written directly in memory without first reading/writing the file on disk. Native blob support is more efficient/faster.
Thanks, I do see the * native blob support comment on the bottom of the listing.