PoDoFo 1.0.0-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
PdfFontManager.h
1
7#ifndef PDF_FONT_CACHE_H
8#define PDF_FONT_CACHE_H
9
10#include "PdfDeclarations.h"
11
12#include "PdfFont.h"
13#include "PdfEncodingFactory.h"
14
15#ifdef PODOFO_HAVE_FONTCONFIG
16#include "PdfFontConfigWrapper.h"
17#endif
18
19#if defined(_WIN32) && defined(PODOFO_HAVE_WIN32GDI)
20// To have LOGFONTW available
21typedef struct HFONT__* HFONT;
22#endif
23
24namespace PoDoFo {
25
26class PdfResources;
27
28struct PODOFO_API PdfFontSearchParams final
29{
30 nullable<PdfFontStyle> Style;
31 PdfFontAutoSelectBehavior AutoSelect = PdfFontAutoSelectBehavior::None;
32 PdfFontMatchBehaviorFlags MatchBehavior = PdfFontMatchBehaviorFlags::None;
34 std::string FontFamilyPattern;
35
37 std::function<PdfFont* (const std::vector<PdfFont*>)> FontSelector;
38};
39
53class PODOFO_API PdfFontManager final
54{
55 friend class PdfDocument;
56 friend class PdfMemDocument;
57 friend class PdfStreamedDocument;
58 friend class PdfFont;
59 friend class PdfCommon;
60 friend class PdfResources;
61
62public:
72 PdfFont* SearchFont(const std::string_view& fontPattern,
73 const PdfFontSearchParams& searchParams = { }, const PdfFontCreateParams& createParams = { });
74
75 PdfFont* SearchFont(const std::string_view& fontPattern, const PdfFontCreateParams& createParams);
76
77 PdfFont& GetStandard14Font(PdfStandard14FontType stdFont,
78 const PdfFontCreateParams& params = { });
79
80 PdfFont& GetOrCreateFont(const std::string_view& fontPath, unsigned faceIndex,
81 const PdfFontCreateParams& params = { });
82
83 PdfFont& GetOrCreateFontFromBuffer(const bufferview& buffer, unsigned faceIndex,
84 const PdfFontCreateParams& params = { });
85
86 PdfFont& GetOrCreateFont(const std::string_view& fontPath,
87 const PdfFontCreateParams& params = { });
88
89 PdfFont& GetOrCreateFontFromBuffer(const bufferview& buffer,
90 const PdfFontCreateParams& params = { });
91
92 PdfFont& GetOrCreateFont(const PdfFontMetricsConstPtr& metrics,
93 const PdfFontCreateParams& params = { });
94
98 PdfFont* GetCachedFont(const PdfReference& ref);
99
105 const PdfFontSearchParams& params = { });
106
107#if defined(_WIN32) && defined(PODOFO_HAVE_WIN32GDI)
108 PdfFont& GetOrCreateFont(HFONT font, const PdfFontCreateParams& params = { });
109#endif
110
111#ifdef PODOFO_HAVE_FONTCONFIG
119 static void SetFontConfigWrapper(const std::shared_ptr<PdfFontConfigWrapper>& fontConfig);
120
121 static PdfFontConfigWrapper& GetFontConfigWrapper();
122#endif // PODOFO_HAVE_FONTCONFIG
123
129 void EmbedFonts();
130
131 // These methods are reserved to use to selected friend classes
132private:
133 PdfFontManager(PdfDocument& doc);
134
135private:
136 const PdfFont* GetLoadedFont(const PdfResources& resources, const std::string_view& name);
137
143 void Clear();
144
145 PdfFont* AddImported(std::unique_ptr<PdfFont>&& font);
146
149 std::string GenerateSubsetPrefix();
150
151 static void AddFontDirectory(const std::string_view& path);
152
156 static PdfFontMetricsConstPtr SearchFontMetrics(const std::string_view& fontPattern,
157 const PdfFontSearchParams& params, const PdfFontMetrics& metrics, bool skipNormalization);
158
159private:
162 struct Descriptor
163 {
164 Descriptor(const std::string_view& name, PdfStandard14FontType stdType,
165 const PdfEncoding& encoding, bool hasFontStyle, PdfFontStyle style);
166
167 Descriptor(const Descriptor& rhs) = default;
168
169 const std::string Name;
170 const PdfStandard14FontType StdType;
171 const unsigned EncodingId;
172 const bool HasFontStyle;
173 const PdfFontStyle Style;
174 };
175
176 struct PathDescriptor
177 {
178 PathDescriptor(const std::string_view& filepath, unsigned faceIndex, const PdfEncoding& encoding);
179
180 PathDescriptor(const PathDescriptor& rhs) = default;
181
182 const std::string FilePath;
183 const unsigned FaceIndex;
184 const unsigned EncodingId;
185 };
186
187 struct HashElement
188 {
189 size_t operator()(const Descriptor& elem) const;
190 size_t operator()(const PathDescriptor& elem) const;
191 };
192
193 struct EqualElement
194 {
195 bool operator()(const Descriptor& lhs, const Descriptor& rhs) const;
196 bool operator()(const PathDescriptor& lhs, const PathDescriptor& rhs) const;
197 };
198
199 using CachedPaths = std::unordered_map<PathDescriptor, PdfFont*, HashElement, EqualElement>;
200 using CachedQueries = std::unordered_map<Descriptor, std::vector<PdfFont*>, HashElement, EqualElement>;
201
202 struct Storage
203 {
204 bool IsLoaded;
205 std::unique_ptr<PdfFont> Font;
206 };
207
208 using FontMap = std::unordered_map<PdfReference, Storage>;
209
210private:
211 static std::unique_ptr<const PdfFontMetrics> searchFontMetrics(const std::string_view& fontName,
212 const PdfFontSearchParams& params, const PdfFontMetrics* refMetrics, bool skipNormalization);
213 PdfFont* getImportedFont(const std::string_view& pattern,
214 const PdfFontSearchParams& searchParams, const PdfFontCreateParams& createParams);
215 PdfFont* addImported(std::vector<PdfFont*>& fonts, std::unique_ptr<PdfFont>&& font);
216 PdfFont& getOrCreateFontHashed(const PdfFontMetricsConstPtr& metrics, const PdfFontCreateParams& params);
217
218#if defined(_WIN32) && defined(PODOFO_HAVE_WIN32GDI)
219 static std::unique_ptr<charbuff> getWin32FontData(const std::string_view& fontName,
220 const PdfFontSearchParams& params);
221#endif
222
223private:
224 PdfFontManager(const PdfFontManager&) = delete;
225 PdfFontManager& operator=(const PdfFontManager&) = delete;
226
227private:
228 PdfDocument* m_doc;
229 std::string m_currentPrefix;
230
231 // Map of cached font queries
232 CachedQueries m_cachedQueries;
233
234 // Map of cached font paths
235 CachedPaths m_cachedPaths;
236
237 // Map of all indirect fonts
238 FontMap m_fonts;
239
240 // Map of all invalid inline fonts
241 std::unordered_map<std::string, std::unique_ptr<PdfFont>> m_inlineFonts;
242
243#ifdef PODOFO_HAVE_FONTCONFIG
244 static std::shared_ptr<PdfFontConfigWrapper> m_fontConfig;
245#endif
246};
247
248};
249
250#endif // PDF_FONT_CACHE_H
SPDX-FileCopyrightText: (C) 2005 Dominik Seichter domseichter@web.de SPDX-FileCopyrightText: (C) 2020...
PdfDocument is the core interface for working with PDF documents.
Definition PdfDocument.h:111
This class assists PdfDocument with caching font information.
Definition PdfFontManager.h:54
PdfFont * SearchFont(const std::string_view &fontPattern, const PdfFontSearchParams &searchParams={ }, const PdfFontCreateParams &createParams={ })
Get a font from the cache.
static PdfFontMetricsConstPtr SearchFontMetrics(const std::string_view &fontPattern, const PdfFontSearchParams &params={ })
Try to search for fontmetrics from the given fontname and parameters.
Before you can draw text on a PDF document, you have to create a font object first.
Definition PdfFont.h:45
PdfMemDocument is the core class for reading and manipulating PDF files and writing them back to disk...
Definition PdfMemDocument.h:38
A interface that provides a wrapper around /Resources.
Definition PdfResources.h:25
PdfStreamedDocument is the preferred class for creating new PDF documents.
Definition PdfStreamedDocument.h:50
Convenient type for char array storage and/or buffer with std::string compatibility.
Definition basetypes.h:38
SPDX-FileCopyrightText: (C) 2022 Francesco Pretto ceztko@gmail.com SPDX-License-Identifier: LGPL-2....
Definition basetypes.h:16
PdfFontAutoSelectBehavior
Flags to control font creation.
Definition PdfDeclarations.h:331
std::shared_ptr< const PdfFontMetrics > PdfFontMetricsConstPtr
Convenience typedef for a const PdfEncoding shared ptr.
Definition PdfFontMetrics.h:27
PdfFontMatchBehaviorFlags
Definition PdfDeclarations.h:348