mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:57:35 +00:00
LibPDF: Implement LabColorSpace
This commit is contained in:
parent
cf3c8a216b
commit
1dfd49ef99
3 changed files with 76 additions and 5 deletions
|
@ -193,6 +193,10 @@ public:
|
|||
|
||||
private:
|
||||
LabColorSpace() = default;
|
||||
|
||||
Array<float, 3> m_whitepoint { 0, 0, 0 };
|
||||
Array<float, 3> m_blackpoint { 0, 0, 0 };
|
||||
Array<float, 4> m_range { -100, 100, -100, 100 };
|
||||
};
|
||||
|
||||
class SeparationColorSpace final : public ColorSpace {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue