mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
LibPDF: Don't log CFF Copyright tag as unknown
This commit is contained in:
parent
f32764975a
commit
04aec4a032
2 changed files with 3 additions and 1 deletions
|
@ -140,6 +140,7 @@ PDFErrorOr<NonnullRefPtr<CFF>> CFF::create(ReadonlyBytes const& cff_bytes, RefPt
|
||||||
case TopDictOperator::FontBBox:
|
case TopDictOperator::FontBBox:
|
||||||
case TopDictOperator::UniqueID:
|
case TopDictOperator::UniqueID:
|
||||||
case TopDictOperator::XUID:
|
case TopDictOperator::XUID:
|
||||||
|
case TopDictOperator::Copyright:
|
||||||
case TopDictOperator::IsFixedPitch:
|
case TopDictOperator::IsFixedPitch:
|
||||||
case TopDictOperator::ItalicAngle:
|
case TopDictOperator::ItalicAngle:
|
||||||
case TopDictOperator::UnderlinePosition:
|
case TopDictOperator::UnderlinePosition:
|
||||||
|
|
|
@ -34,7 +34,8 @@ private:
|
||||||
Encoding,
|
Encoding,
|
||||||
CharStrings,
|
CharStrings,
|
||||||
Private,
|
Private,
|
||||||
IsFixedPitch = (12 << 8 | 1),
|
Copyright = (12 << 8),
|
||||||
|
IsFixedPitch,
|
||||||
ItalicAngle,
|
ItalicAngle,
|
||||||
UnderlinePosition,
|
UnderlinePosition,
|
||||||
UnderlineThickness,
|
UnderlineThickness,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue