Does anyone know if there is a way to get the name of an embedded profile?
Thanks,
sanderton
Do embedded ICM profiles have names?
Name of ICM profile, using VisualMagick++
Thanks!
I should have also asked: Is there a way to get the name of the profile using Visual Magick / C++? Or is there some other tool that can read the Blob?
I really appreciate your help and ideas. Thanks again,
sanderton
I should have also asked: Is there a way to get the name of the profile using Visual Magick / C++? Or is there some other tool that can read the Blob?
I really appreciate your help and ideas. Thanks again,
sanderton
Most/all ImageMagick language interfaces have a method to access image profiles. For MagickCore, for example we have:
Code: Select all
ResetImageProfileIterator(image);
for (name=GetNextImageProfile(image); name != (char *) NULL; )
{
profile=GetImageProfile(image,name);
if (profile == (StringInfo *) NULL)
continue;
(void) fprintf(file," Profile-%s: %lu bytes\n",name,
(unsigned long) profile->length);
...
name=GetNextImageProfile(image);
}