/* * jdicc.c * * Copyright (C) 1997-1998, Thomas G. Lane, Todd Newman. * Copyright (C) 2017, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file provides code to read International Color Consortium (ICC) device * profiles embedded in JFIF JPEG image files. The ICC has defined a standard * for including such data in JPEG "APP2" markers. The code given here does * not know anything about the internal structure of the ICC profile data; it * just knows how to get the profile data from a JPEG file while reading it.
*/
/* * See if there was an ICC profile in the JPEG file being read; if so, * reassemble and return the profile data. * * TRUE is returned if an ICC profile was found, FALSE if not. If TRUE is * returned, *icc_data_ptr is set to point to the returned data, and * *icc_data_len is set to its length. * * IMPORTANT: the data at *icc_data_ptr is allocated with malloc() and must be * freed by the caller with free() when the caller no longer needs it. * (Alternatively, we could write this routine to use the IJG library's memory * allocator, so that the data would be freed implicitly when * jpeg_finish_decompress() is called. But it seems likely that many * applications will prefer to have the data stick around after decompression * finishes.)
*/
GLOBAL(boolean)
jpeg_read_icc_profile(j_decompress_ptr cinfo, JOCTET **icc_data_ptr, unsignedint *icc_data_len)
{
jpeg_saved_marker_ptr marker; int num_markers = 0; int seq_no;
JOCTET *icc_data; unsignedint total_length; #define MAX_SEQ_NO 255 /* sufficient since marker numbers are bytes */ char marker_present[MAX_SEQ_NO + 1]; /* 1 if marker found */ unsignedint data_length[MAX_SEQ_NO + 1]; /* size of profile data in marker */ unsignedint data_offset[MAX_SEQ_NO + 1]; /* offset for data in marker */
if (icc_data_ptr == NULL || icc_data_len == NULL)
ERREXIT(cinfo, JERR_BUFFER_SIZE); if (cinfo->global_state < DSTATE_READY)
ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);
if (total_length == 0) {
WARNMS(cinfo, JWRN_BOGUS_ICC); /* found only empty markers? */ returnFALSE;
}
/* Allocate space for assembled data */
icc_data = (JOCTET *)malloc(total_length * sizeof(JOCTET)); if (icc_data == NULL)
ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 11); /* oops, out of memory */
/* and fill it in */ for (marker = cinfo->marker_list; marker != NULL; marker = marker->next) { if (marker_is_icc(marker)) {
JOCTET FAR *src_ptr;
JOCTET *dst_ptr; unsignedint length;
seq_no = marker->data[12];
dst_ptr = icc_data + data_offset[seq_no];
src_ptr = marker->data + ICC_OVERHEAD_LEN;
length = data_length[seq_no]; while (length--) {
*dst_ptr++ = *src_ptr++;
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.