summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-06-26 15:12:48 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-06-26 15:12:48 +0000
commit8625d3b73eb51d2100cdf15e7a43b998b8251dc9 (patch)
treec56f58a7f69b5fdc7b6934e5b92857c771270d46 /public
parent2cbae7328b4eb31a78db5babc4d5995971de308f (diff)
downloadpdfium-8625d3b73eb51d2100cdf15e7a43b998b8251dc9.tar.xz
Add FPDFTextObj_GetFontSize() API
In contrast with FPDFText_GetFontSize(), this exposes the font size of the text object according to the text state, rather than the font size of a particular character. Change-Id: Iac88d1aea8fb6bb5522bdaf01363aa6d32025b8f Reviewed-on: https://pdfium-review.googlesource.com/35931 Reviewed-by: Nicolás Peña Moreno <npm@chromium.org> Commit-Queue: Nicolás Peña Moreno <npm@chromium.org>
Diffstat (limited to 'public')
-rw-r--r--public/fpdf_edit.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h
index 6df5e32370..6e613bca07 100644
--- a/public/fpdf_edit.h
+++ b/public/fpdf_edit.h
@@ -1090,6 +1090,15 @@ FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFText_GetMatrix(FPDF_PAGEOBJECT text,
double* e,
double* f);
+// Experimental API.
+// Get the font size of a text object.
+//
+// text - handle to a text.
+//
+// Returns the font size of the text object, measured in points (about 1/72
+// inch) on success; 0 on failure.
+FPDF_EXPORT double FPDF_CALLCONV FPDFTextObj_GetFontSize(FPDF_PAGEOBJECT text);
+
// Close a loaded PDF font.
//
// font - Handle to the loaded font.