aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkColorSpace_A2B.h
blob: 0fc952bd6c22620b144a0eebeb98d9671a8aea82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkColorSpace_A2B_DEFINED
#define SkColorSpace_A2B_DEFINED

#include "SkColorSpace_Base.h"

// An alternative SkColorSpace that represents all the color space data that
// is stored in an A2B0 ICC tag. This allows us to use alternative profile
// connection spaces (CIELAB instead of just CIEXYZ), use color-lookup-tables
// to do color space transformations not representable as TRC functions or
// matrix operations, as well as have multiple TRC functions. The CLUT also has
// the potential to allow conversion from input color spaces with a different
// number of channels such as CMYK (4) or GRAY (1), but that is not supported yet.
//
// Evaluation is done: A-curve => CLUT => M-curve => Matrix => B-curve
//
// There are also multi-processing-elements in the A2B0 tag which allow you to
// combine these 3 primitives (TRC, CLUT, matrix) in any order/quantitiy,
// but support for that is not implemented.
class SkColorSpace_A2B : public SkColorSpace_Base {
public:
    const SkMatrix44* toXYZD50() const override {
        // the matrix specified in A2B0 profiles is not necessarily
        // a to-XYZ matrix, as to-Lab is supported as well so returning
        // that could be misleading. Additionally, B-curves are applied
        // after the matrix is, but a toXYZD50 matrix is the last thing
        // applied in order to get into the (XYZ) profile connection space.
        return nullptr;
    }

    const SkMatrix44* fromXYZD50() const override {
        // See toXYZD50()'s comment. Also, A2B0 profiles are not supported
        // as destination color spaces, so an inverse matrix is never wanted.
        return nullptr;
    }
    
    bool onGammaCloseToSRGB() const override {
        // There is no single gamma curve in an A2B0 profile
        return false;
    }
    
    bool onGammaIsLinear() const override {
        // There is no single gamma curve in an A2B0 profile
        return false;
    }

    SkGammaNamed aCurveNamed() const { return fACurveNamed; }

    const SkGammas* aCurve() const { return fACurve.get(); }

    const SkColorLookUpTable* colorLUT() const { return fColorLUT.get(); }

    SkGammaNamed mCurveNamed() const { return fMCurveNamed; }
    
    const SkGammas* mCurve() const { return fMCurve.get(); }

    const SkMatrix44& matrix() const { return fMatrix; }

    SkGammaNamed bCurveNamed() const { return fBCurveNamed; }
    
    const SkGammas* bCurve() const { return fBCurve.get(); }

    // the intermediate profile connection space that this color space
    // represents the transformation to
    enum class PCS : uint8_t {
        kLAB, // CIELAB
        kXYZ  // CIEXYZ
    };
    
    PCS pcs() const { return fPCS; }

    Type type() const override { return Type::kA2B; }

private:
    SkColorSpace_A2B(SkGammaNamed aCurveNamed, sk_sp<SkGammas> aCurve,
                     sk_sp<SkColorLookUpTable> colorLUT,
                     SkGammaNamed mCurveNamed, sk_sp<SkGammas> mCurve,
                     const SkMatrix44& matrix,
                     SkGammaNamed bCurveNamed, sk_sp<SkGammas> bCurve,
                     PCS pcs, sk_sp<SkData> profileData);

    const SkGammaNamed        fACurveNamed;
    sk_sp<SkGammas>           fACurve;
    sk_sp<SkColorLookUpTable> fColorLUT;
    const SkGammaNamed        fMCurveNamed;
    sk_sp<SkGammas>           fMCurve;
    SkMatrix44                fMatrix;
    const SkGammaNamed        fBCurveNamed;
    sk_sp<SkGammas>           fBCurve;
    PCS                       fPCS;
    
    friend class SkColorSpace;
    typedef SkColorSpace_Base INHERITED;
};

#endif