1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:57:35 +00:00

LibPDF: Implement LabColorSpace

This commit is contained in:
Nico Weber 2023-11-02 09:52:43 -04:00 committed by Andrew Kaster
parent cf3c8a216b
commit 1dfd49ef99
3 changed files with 76 additions and 5 deletions

View file

@ -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 {