diff options
author | wileyrya <wileyrr@gmail.com> | 2017-05-26 11:38:14 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-05-26 17:20:01 +0000 |
commit | 864e9fb67f42186ce24d9bf09e643c85ff89a175 (patch) | |
tree | 47812402bb4e75d02ff62da3470447fbde12d940 /public/fpdf_edit.h | |
parent | 22a237fb403d76d65a254c4f9cf1c1a9d0b22772 (diff) | |
download | pdfium-864e9fb67f42186ce24d9bf09e643c85ff89a175.tar.xz |
Add public API for setting the fill color on a text object
BUG=pdfium:719
R=npm@chromium.org
Change-Id: Ifd9330de265f8419d588b65fbd6a6187f17badd1
Reviewed-on: https://pdfium-review.googlesource.com/5950
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'public/fpdf_edit.h')
-rw-r--r-- | public/fpdf_edit.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index 47a0e68f5a..904231f09f 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -469,6 +469,21 @@ DLLEXPORT FPDF_FONT STDCALL FPDFText_LoadFont(FPDF_DOCUMENT document, int font_type, FPDF_BOOL cid); +// Set the fill RGBA of a text object. Range of values: 0 - 255. +// +// text_object - handle to the text object. +// R - the red component for the path fill color. +// G - the green component for the path fill color. +// B - the blue component for the path fill color. +// A - the fill alpha for the path. +// +// Returns TRUE on success. +DLLEXPORT FPDF_BOOL STDCALL FPDFText_SetFillColor(FPDF_PAGEOBJECT text_object, + unsigned int R, + unsigned int G, + unsigned int B, + unsigned int A); + // Close a loaded PDF font. // // font - Handle to the loaded font. |