summaryrefslogtreecommitdiff
path: root/public/cpp
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-05-02 14:12:50 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-05-02 18:37:40 +0000
commitb31618571938e4873dcf1cdd44eeedb40caa5bd7 (patch)
treea337f11a62a35e8c0d52be8c5c9ec55902a6055a /public/cpp
parent336544a7451ac80c9f33216b7f61e9347d251108 (diff)
downloadpdfium-b31618571938e4873dcf1cdd44eeedb40caa5bd7.tar.xz
Add API to create a text object using a loaded font.
There is already a method to add text from standard font, this CL adds an option to add text using a loaded font. The font set into a text object is ref counted and may be released, so call LoadFont on this new text obj, and add a method to close the font. This CL also improves the SetText method so that it now uses a WideString, in preparation for CID fonts with non-Latin characters. Bug: pdfium:667 Change-Id: I6829d702357d2a898a12f5297e4fd2ec993a9891 Reviewed-on: https://pdfium-review.googlesource.com/4770 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'public/cpp')
-rw-r--r--public/cpp/fpdf_deleters.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/public/cpp/fpdf_deleters.h b/public/cpp/fpdf_deleters.h
index d56daf5c55..238ef30e62 100644
--- a/public/cpp/fpdf_deleters.h
+++ b/public/cpp/fpdf_deleters.h
@@ -6,6 +6,7 @@
#define PUBLIC_CPP_FPDF_DELETERS_H_
#include "public/fpdf_dataavail.h"
+#include "public/fpdf_edit.h"
#include "public/fpdf_formfill.h"
#include "public/fpdf_structtree.h"
#include "public/fpdf_text.h"
@@ -43,4 +44,8 @@ struct FPDFStructTreeDeleter {
inline void operator()(FPDF_STRUCTTREE tree) { FPDF_StructTree_Close(tree); }
};
+struct FPDFFontDeleter {
+ inline void operator()(FPDF_FONT font) { FPDFFont_Close(font); }
+};
+
#endif // PUBLIC_CPP_FPDF_DELETERS_H_