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

LibPDF: Add Type0 and TrueType fonts

This commit is contained in:
Matthew Olsson 2022-03-25 08:19:34 -07:00 committed by Andreas Kling
parent e831c374f4
commit 4d0f74a15c
9 changed files with 252 additions and 0 deletions

View file

@ -23,13 +23,17 @@
A(CA) \
A(CCITTFaxDecode) \
A(CalRGB) \
A(CIDSystemInfo) \
A(CIDToGIDMap) \
A(ColorSpace) \
A(Contents) \
A(Count) \
A(CropBox) \
A(Crypt) \
A(D) \
A(DW) \
A(DCTDecode) \
A(DescendantFonts) \
A(Dest) \
A(Dests) \
A(DeviceCMYK) \
@ -87,6 +91,7 @@
A(O) \
A(OP) \
A(OPM) \
A(Ordering) \
A(Outlines) \
A(P) \
A(Pages) \
@ -95,6 +100,7 @@
A(Prev) \
A(R) \
A(RI) \
A(Registry) \
A(Resources) \
A(Root) \
A(Rotate) \
@ -103,6 +109,7 @@
A(SM) \
A(SMask) \
A(Subtype) \
A(Supplement) \
A(T) \
A(TK) \
A(TR) \
@ -114,6 +121,7 @@
A(UCR) \
A(UseBlackPTComp) \
A(UserUnit) \
A(W) \
A(WhitePoint) \
A(Widths) \
A(XYZ) \
@ -127,6 +135,8 @@ public:
#define ENUMERATE(name) static FlyString name;
ENUMERATE_COMMON_NAMES(ENUMERATE)
#undef ENUMERATE
static FlyString IdentityH;
};
}