1 /* 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 8 #ifndef SkICCPriv_DEFINED 9 #define SkICCPriv_DEFINED 10 11 #include "include/core/SkFourByteTag.h" 12 13 #include <cstddef> 14 #include <cstdint> 15 16 // This is equal to the header size according to the ICC specification (128) 17 // plus the size of the tag count (4). We include the tag count since we 18 // always require it to be present anyway. 19 static constexpr size_t kICCHeaderSize = 132; 20 21 // Contains a signature (4), offset (4), and size (4). 22 static constexpr size_t kICCTagTableEntrySize = 12; 23 24 static constexpr uint32_t kRGB_ColorSpace = SkSetFourByteTag('R', 'G', 'B', ' '); 25 static constexpr uint32_t kCMYK_ColorSpace = SkSetFourByteTag('C', 'M', 'Y', 'K'); 26 static constexpr uint32_t kGray_ColorSpace = SkSetFourByteTag('G', 'R', 'A', 'Y'); 27 static constexpr uint32_t kDisplay_Profile = SkSetFourByteTag('m', 'n', 't', 'r'); 28 static constexpr uint32_t kInput_Profile = SkSetFourByteTag('s', 'c', 'n', 'r'); 29 static constexpr uint32_t kOutput_Profile = SkSetFourByteTag('p', 'r', 't', 'r'); 30 static constexpr uint32_t kColorSpace_Profile = SkSetFourByteTag('s', 'p', 'a', 'c'); 31 static constexpr uint32_t kXYZ_PCSSpace = SkSetFourByteTag('X', 'Y', 'Z', ' '); 32 static constexpr uint32_t kLAB_PCSSpace = SkSetFourByteTag('L', 'a', 'b', ' '); 33 static constexpr uint32_t kACSP_Signature = SkSetFourByteTag('a', 'c', 's', 'p'); 34 35 static constexpr uint32_t kTAG_rXYZ = SkSetFourByteTag('r', 'X', 'Y', 'Z'); 36 static constexpr uint32_t kTAG_gXYZ = SkSetFourByteTag('g', 'X', 'Y', 'Z'); 37 static constexpr uint32_t kTAG_bXYZ = SkSetFourByteTag('b', 'X', 'Y', 'Z'); 38 static constexpr uint32_t kTAG_rTRC = SkSetFourByteTag('r', 'T', 'R', 'C'); 39 static constexpr uint32_t kTAG_gTRC = SkSetFourByteTag('g', 'T', 'R', 'C'); 40 static constexpr uint32_t kTAG_bTRC = SkSetFourByteTag('b', 'T', 'R', 'C'); 41 static constexpr uint32_t kTAG_kTRC = SkSetFourByteTag('k', 'T', 'R', 'C'); 42 static constexpr uint32_t kTAG_A2B0 = SkSetFourByteTag('A', '2', 'B', '0'); 43 static constexpr uint32_t kTAG_B2A0 = SkSetFourByteTag('B', '2', 'A', '0'); 44 static constexpr uint32_t kTAG_desc = SkSetFourByteTag('d', 'e', 's', 'c'); 45 static constexpr uint32_t kTAG_cicp = SkSetFourByteTag('c', 'i', 'c', 'p'); 46 static constexpr uint32_t kTAG_wtpt = SkSetFourByteTag('w', 't', 'p', 't'); 47 static constexpr uint32_t kTAG_cprt = SkSetFourByteTag('c', 'p', 'r', 't'); 48 49 static constexpr uint32_t kTAG_CurveType = SkSetFourByteTag('c', 'u', 'r', 'v'); 50 static constexpr uint32_t kTAG_ParaCurveType = SkSetFourByteTag('p', 'a', 'r', 'a'); 51 static constexpr uint32_t kTAG_TextType = SkSetFourByteTag('m', 'l', 'u', 'c'); 52 static constexpr uint32_t kTAG_mABType = SkSetFourByteTag('m', 'A', 'B', ' '); 53 static constexpr uint32_t kTAG_mBAType = SkSetFourByteTag('m', 'B', 'A', ' '); 54 55 enum ParaCurveType { 56 kExponential_ParaCurveType = 0, 57 kGAB_ParaCurveType = 1, 58 kGABC_ParaCurveType = 2, 59 kGABDE_ParaCurveType = 3, 60 kGABCDEF_ParaCurveType = 4, 61 }; 62 63 #endif // SkICCPriv_DEFINED 64