Path: blob/master/thirdparty/libjpeg-turbo/src/jcicc.c
9904 views
/*1* jcicc.c2*3* Copyright (C) 1997-1998, Thomas G. Lane, Todd Newman.4* Copyright (C) 2017, D. R. Commander.5* For conditions of distribution and use, see the accompanying README.ijg6* file.7*8* This file provides code to write International Color Consortium (ICC) device9* profiles embedded in JFIF JPEG image files. The ICC has defined a standard10* for including such data in JPEG "APP2" markers. The code given here does11* not know anything about the internal structure of the ICC profile data; it12* just knows how to embed the profile data in a JPEG file while writing it.13*/1415#define JPEG_INTERNALS16#include "jinclude.h"17#include "jpeglib.h"18#include "jerror.h"192021/*22* Since an ICC profile can be larger than the maximum size of a JPEG marker23* (64K), we need provisions to split it into multiple markers. The format24* defined by the ICC specifies one or more APP2 markers containing the25* following data:26* Identifying string ASCII "ICC_PROFILE\0" (12 bytes)27* Marker sequence number 1 for first APP2, 2 for next, etc (1 byte)28* Number of markers Total number of APP2's used (1 byte)29* Profile data (remainder of APP2 data)30* Decoders should use the marker sequence numbers to reassemble the profile,31* rather than assuming that the APP2 markers appear in the correct sequence.32*/3334#define ICC_MARKER (JPEG_APP0 + 2) /* JPEG marker code for ICC */35#define ICC_OVERHEAD_LEN 14 /* size of non-profile data in APP2 */36#define MAX_BYTES_IN_MARKER 65533 /* maximum data len of a JPEG marker */37#define MAX_DATA_BYTES_IN_MARKER (MAX_BYTES_IN_MARKER - ICC_OVERHEAD_LEN)383940/*41* This routine writes the given ICC profile data into a JPEG file. It *must*42* be called AFTER calling jpeg_start_compress() and BEFORE the first call to43* jpeg_write_scanlines(). (This ordering ensures that the APP2 marker(s) will44* appear after the SOI and JFIF or Adobe markers, but before all else.)45*/4647GLOBAL(void)48jpeg_write_icc_profile(j_compress_ptr cinfo, const JOCTET *icc_data_ptr,49unsigned int icc_data_len)50{51unsigned int num_markers; /* total number of markers we'll write */52int cur_marker = 1; /* per spec, counting starts at 1 */53unsigned int length; /* number of bytes to write in this marker */5455if (icc_data_ptr == NULL || icc_data_len == 0)56ERREXIT(cinfo, JERR_BUFFER_SIZE);57if (cinfo->global_state < CSTATE_SCANNING)58ERREXIT1(cinfo, JERR_BAD_STATE, cinfo->global_state);5960/* Calculate the number of markers we'll need, rounding up of course */61num_markers = icc_data_len / MAX_DATA_BYTES_IN_MARKER;62if (num_markers * MAX_DATA_BYTES_IN_MARKER != icc_data_len)63num_markers++;6465while (icc_data_len > 0) {66/* length of profile to put in this marker */67length = icc_data_len;68if (length > MAX_DATA_BYTES_IN_MARKER)69length = MAX_DATA_BYTES_IN_MARKER;70icc_data_len -= length;7172/* Write the JPEG marker header (APP2 code and marker length) */73jpeg_write_m_header(cinfo, ICC_MARKER,74(unsigned int)(length + ICC_OVERHEAD_LEN));7576/* Write the marker identifying string "ICC_PROFILE" (null-terminated). We77* code it in this less-than-transparent way so that the code works even if78* the local character set is not ASCII.79*/80jpeg_write_m_byte(cinfo, 0x49);81jpeg_write_m_byte(cinfo, 0x43);82jpeg_write_m_byte(cinfo, 0x43);83jpeg_write_m_byte(cinfo, 0x5F);84jpeg_write_m_byte(cinfo, 0x50);85jpeg_write_m_byte(cinfo, 0x52);86jpeg_write_m_byte(cinfo, 0x4F);87jpeg_write_m_byte(cinfo, 0x46);88jpeg_write_m_byte(cinfo, 0x49);89jpeg_write_m_byte(cinfo, 0x4C);90jpeg_write_m_byte(cinfo, 0x45);91jpeg_write_m_byte(cinfo, 0x0);9293/* Add the sequencing info */94jpeg_write_m_byte(cinfo, cur_marker);95jpeg_write_m_byte(cinfo, (int)num_markers);9697/* Add the profile data */98while (length--) {99jpeg_write_m_byte(cinfo, *icc_data_ptr);100icc_data_ptr++;101}102cur_marker++;103}104}105106107