1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 11:47:34 +00:00

LibPDF: Read /Flags off font descriptors

This commit is contained in:
Nico Weber 2024-02-21 14:21:59 -05:00 committed by Andreas Kling
parent a61f09a010
commit 207717982c
3 changed files with 23 additions and 1 deletions

View file

@ -30,9 +30,24 @@ public:
virtual void set_font_size(float font_size) = 0;
virtual PDFErrorOr<Gfx::FloatPoint> draw_string(Gfx::Painter&, Gfx::FloatPoint, ByteString const&, Renderer const&) = 0;
// TABLE 5.20 Font flags
bool is_fixed_pitch() const { return m_flags & (1 << (1 - 1)); }
bool is_serif() const { return m_flags & (1 << (2 - 1)); }
bool is_symbolic() const { return m_flags & (1 << (3 - 1)); }
bool is_script() const { return m_flags & (1 << (4 - 1)); }
// Note: No bit position 5.
bool is_nonsymbolic() const { return m_flags & (1 << (6 - 1)); }
bool is_italic() const { return m_flags & (1 << (7 - 1)); }
// Note: Big jump in bit positions.
bool is_all_cap() const { return m_flags & (1 << (17 - 1)); }
bool is_small_cap() const { return m_flags & (1 << (18 - 1)); }
bool is_force_bold() const { return m_flags & (1 << (19 - 1)); }
protected:
virtual PDFErrorOr<void> initialize(Document* document, NonnullRefPtr<DictObject> const& dict, float font_size);
static PDFErrorOr<NonnullRefPtr<Gfx::Font>> replacement_for(StringView name, float font_size);
unsigned m_flags { 0 };
};
}