Image
*image;
+ PNGErrorInfo
+ *error_info;
/* The unknown chunk structure contains the chunk data:
png_byte name[5];
{
/* process eXIf or exIf chunk */
- PNGErrorInfo
- *error_info;
-
(void) LogMagickEvent(CoderEvent,GetMagickModule(),
" recognized eXIf chunk");
return(1);
}
+ /* acTL */
+ if ((chunk->name[0] == 97) && (chunk->name[1] == 99) &&
+ (chunk->name[2] == 84) && (chunk->name[3] == 76))
+ {
+ image=(Image *) png_get_user_chunk_ptr(ping);
+ error_info=(PNGErrorInfo *) png_get_error_ptr(ping);
+
+ (void) SetImageProperty(image,"png:acTL","chunk was found",
+ error_info->exception);
+
+ return(1);
+ }
+
return(0); /* Did not recognize */
}
#endif /* PNG_UNKNOWN_CHUNKS_SUPPORTED */