blob: a50d362a553919f5ad60d194a8fab4b0b8a01046 [file] [log] [blame]
Matt Sarett8e042862016-12-19 09:43:30 -05001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Hal Canary6b20a552017-02-07 14:09:38 -05008#ifndef SkICCPriv_DEFINED
9#define SkICCPriv_DEFINED
10
Hal Canary466c7d62017-07-03 15:11:49 -040011#include "SkColorSpace.h"
Hal Canary6b20a552017-02-07 14:09:38 -050012#include "SkTypes.h"
13
Matt Sarett8e042862016-12-19 09:43:30 -050014// This is equal to the header size according to the ICC specification (128)
15// plus the size of the tag count (4). We include the tag count since we
16// always require it to be present anyway.
17static constexpr size_t kICCHeaderSize = 132;
18
19// Contains a signature (4), offset (4), and size (4).
20static constexpr size_t kICCTagTableEntrySize = 12;
21
22static constexpr uint32_t kRGB_ColorSpace = SkSetFourByteTag('R', 'G', 'B', ' ');
23static constexpr uint32_t kCMYK_ColorSpace = SkSetFourByteTag('C', 'M', 'Y', 'K');
24static constexpr uint32_t kGray_ColorSpace = SkSetFourByteTag('G', 'R', 'A', 'Y');
25static constexpr uint32_t kDisplay_Profile = SkSetFourByteTag('m', 'n', 't', 'r');
26static constexpr uint32_t kInput_Profile = SkSetFourByteTag('s', 'c', 'n', 'r');
27static constexpr uint32_t kOutput_Profile = SkSetFourByteTag('p', 'r', 't', 'r');
28static constexpr uint32_t kColorSpace_Profile = SkSetFourByteTag('s', 'p', 'a', 'c');
29static constexpr uint32_t kXYZ_PCSSpace = SkSetFourByteTag('X', 'Y', 'Z', ' ');
30static constexpr uint32_t kLAB_PCSSpace = SkSetFourByteTag('L', 'a', 'b', ' ');
31static constexpr uint32_t kACSP_Signature = SkSetFourByteTag('a', 'c', 's', 'p');
32
33static constexpr uint32_t kTAG_rXYZ = SkSetFourByteTag('r', 'X', 'Y', 'Z');
34static constexpr uint32_t kTAG_gXYZ = SkSetFourByteTag('g', 'X', 'Y', 'Z');
35static constexpr uint32_t kTAG_bXYZ = SkSetFourByteTag('b', 'X', 'Y', 'Z');
36static constexpr uint32_t kTAG_rTRC = SkSetFourByteTag('r', 'T', 'R', 'C');
37static constexpr uint32_t kTAG_gTRC = SkSetFourByteTag('g', 'T', 'R', 'C');
38static constexpr uint32_t kTAG_bTRC = SkSetFourByteTag('b', 'T', 'R', 'C');
39static constexpr uint32_t kTAG_kTRC = SkSetFourByteTag('k', 'T', 'R', 'C');
40static constexpr uint32_t kTAG_A2B0 = SkSetFourByteTag('A', '2', 'B', '0');
41
42static constexpr uint32_t kTAG_CurveType = SkSetFourByteTag('c', 'u', 'r', 'v');
43static constexpr uint32_t kTAG_ParaCurveType = SkSetFourByteTag('p', 'a', 'r', 'a');
Matt Sarett1bfcf882016-12-19 18:37:34 -050044static constexpr uint32_t kTAG_TextType = SkSetFourByteTag('m', 'l', 'u', 'c');
45
46enum ParaCurveType {
47 kExponential_ParaCurveType = 0,
48 kGAB_ParaCurveType = 1,
49 kGABC_ParaCurveType = 2,
50 kGABDE_ParaCurveType = 3,
51 kGABCDEF_ParaCurveType = 4,
52};
Hal Canary7a808d62017-06-16 13:38:34 -040053
54/*
Hal Canarya8565e52017-06-19 12:43:28 -040055 * Given fn and toXYZD50, generate a decription tag that either includes a hash
56 * of the function and gamut or is a special name.
57 * Exposed for unit testing and tools.
Hal Canary7a808d62017-06-16 13:38:34 -040058 */
Hal Canarya8565e52017-06-19 12:43:28 -040059SkString SkICCGetColorProfileTag(const SkColorSpaceTransferFn& fn,
60 const SkMatrix44& toXYZD50);
Hal Canary6b20a552017-02-07 14:09:38 -050061#endif // SkICCPriv_DEFINED