Do embedded ICM profiles have names?
Posted: 2006-09-27T12:43:40-07:00
Does anyone know if there is a way to get the name of an embedded profile?
Thanks,
sanderton
Thanks,
sanderton
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://download.imagemagick.org/discourse-server/
https://download.imagemagick.org/discourse-server/viewtopic.php?t=7501
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);
}