From b31618571938e4873dcf1cdd44eeedb40caa5bd7 Mon Sep 17 00:00:00 2001 From: Nicolas Pena Date: Tue, 2 May 2017 14:12:50 -0400 Subject: Add API to create a text object using a loaded font. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Commit-Queue: Nicolás Peña --- fpdfsdk/fpdfview_c_api_test.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fpdfsdk/fpdfview_c_api_test.c') diff --git a/fpdfsdk/fpdfview_c_api_test.c b/fpdfsdk/fpdfview_c_api_test.c index b4da951947..1606abbf08 100644 --- a/fpdfsdk/fpdfview_c_api_test.c +++ b/fpdfsdk/fpdfview_c_api_test.c @@ -102,6 +102,8 @@ int CheckPDFiumCApi() { CHK(FPDFPageObj_NewTextObj); CHK(FPDFText_SetText); CHK(FPDFText_LoadFont); + CHK(FPDFFont_Close); + CHK(FPDFPageObj_CreateTextObj); // fpdf_ext.h CHK(FSDK_SetUnSpObjProcessHandler); -- cgit v1.2.3