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

LibPDF: Handle the gs graphical operator

This commit is contained in:
Matthew Olsson 2021-05-27 14:22:24 -07:00 committed by Ali Mohammad Pur
parent 006f5498de
commit 47531619e3
3 changed files with 60 additions and 3 deletions

View file

@ -9,25 +9,33 @@
#include <AK/FlyString.h>
#define ENUMERATE_COMMON_NAMES(V) \
V(AIS) \
V(ASCII85Decode) \
V(ASCIIHexDecode) \
V(BG) \
V(BG2) \
V(BM) \
V(BaseFont) \
V(BlackPoint) \
V(C) \
V(CalRGB) \
V(CA) \
V(CCITTFaxDecode) \
V(CalRGB) \
V(ColorSpace) \
V(Contents) \
V(Count) \
V(CropBox) \
V(Crypt) \
V(D) \
V(DCTDecode) \
V(Dest) \
V(DeviceCMYK) \
V(DeviceGray) \
V(DeviceRGB) \
V(E) \
V(ExtGState) \
V(F) \
V(FL) \
V(Filter) \
V(First) \
V(Fit) \
@ -41,35 +49,54 @@
V(Font) \
V(Gamma) \
V(H) \
V(HT) \
V(HTO) \
V(JBIG2Decode) \
V(JPXDecode) \
V(Kids) \
V(L) \
V(LC) \
V(LJ) \
V(LW) \
V(LZWDecode) \
V(Last) \
V(Length) \
V(Linearized) \
V(ML) \
V(Matrix) \
V(MediaBox) \
V(N) \
V(Next) \
V(O) \
V(OP) \
V(OPM) \
V(Outlines) \
V(P) \
V(Pages) \
V(Parent) \
V(Pattern) \
V(Prev) \
V(RI) \
V(Resources) \
V(Root) \
V(Rotate) \
V(RunLengthDecode) \
V(SA) \
V(SM) \
V(SMask) \
V(T) \
V(TK) \
V(TR) \
V(TR2) \
V(Title) \
V(Type) \
V(UCR) \
V(UseBlackPTComp) \
V(UserUnit) \
V(WhitePoint) \
V(XYZ)
V(XYZ) \
V(ca) \
V(op)
namespace PDF {