diff --git a/Userland/Libraries/LibPDF/Fonts/CFF.cpp b/Userland/Libraries/LibPDF/Fonts/CFF.cpp index 91c89393c7..d920861e16 100644 --- a/Userland/Libraries/LibPDF/Fonts/CFF.cpp +++ b/Userland/Libraries/LibPDF/Fonts/CFF.cpp @@ -140,6 +140,7 @@ PDFErrorOr> CFF::create(ReadonlyBytes const& cff_bytes, RefPt case TopDictOperator::FontBBox: case TopDictOperator::UniqueID: case TopDictOperator::XUID: + case TopDictOperator::Copyright: case TopDictOperator::IsFixedPitch: case TopDictOperator::ItalicAngle: case TopDictOperator::UnderlinePosition: diff --git a/Userland/Libraries/LibPDF/Fonts/CFF.h b/Userland/Libraries/LibPDF/Fonts/CFF.h index fadb013c94..49b705163e 100644 --- a/Userland/Libraries/LibPDF/Fonts/CFF.h +++ b/Userland/Libraries/LibPDF/Fonts/CFF.h @@ -34,7 +34,8 @@ private: Encoding, CharStrings, Private, - IsFixedPitch = (12 << 8 | 1), + Copyright = (12 << 8), + IsFixedPitch, ItalicAngle, UnderlinePosition, UnderlineThickness,