> I got a C++ API question. I just wander if the ImageMagick provided a > C API that can get the Identify of the image
ImageMagick provides a C++ API called Magick++. Use image->ping() and access the image columns, rows, filesize, and format with columns(), rows(), fileSize() and format(). The MagickWand and MagickCore API's have similar methods. _______________________________________________ Magick-users mailing list [email protected] http://studio.imagemagick.org/mailman/listinfo/magick-users
