1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:37:34 +00:00

LibPDF: Split ColorSpace into a different class for each color space

While unnecessary at the moment, this will allow for more fine-grained
control when complex color spaces get added.
This commit is contained in:
Matthew Olsson 2021-05-27 14:01:37 -07:00 committed by Ali Mohammad Pur
parent ea3abb14fe
commit 7b4e36bf88
7 changed files with 174 additions and 106 deletions

View file

@ -12,14 +12,20 @@
V(ASCII85Decode) \
V(ASCIIHexDecode) \
V(BaseFont) \
V(BlackPoint) \
V(C) \
V(CalRGB) \
V(CCITTFaxDecode) \
V(ColorSpace) \
V(Contents) \
V(Count) \
V(CropBox) \
V(Crypt) \
V(DCTDecode) \
V(Dest) \
V(DeviceCMYK) \
V(DeviceGray) \
V(DeviceRGB) \
V(E) \
V(F) \
V(Filter) \
@ -33,6 +39,7 @@
V(FitV) \
V(FlateDecode) \
V(Font) \
V(Gamma) \
V(H) \
V(JBIG2Decode) \
V(JPXDecode) \
@ -42,6 +49,7 @@
V(Last) \
V(Length) \
V(Linearized) \
V(Matrix) \
V(MediaBox) \
V(N) \
V(Next) \
@ -50,6 +58,7 @@
V(P) \
V(Pages) \
V(Parent) \
V(Pattern) \
V(Prev) \
V(Resources) \
V(Root) \
@ -59,6 +68,7 @@
V(Title) \
V(Type) \
V(UserUnit) \
V(WhitePoint) \
V(XYZ)
namespace PDF {