diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2018-02-25 22:23:31 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2018-02-27 14:08:28 +0100 |
commit | 51d84cb3b67ab17f2eae1530044d531320e6a5fa (patch) | |
tree | b988c88f560598edce60fd481e050f5e85df6bfb /include | |
parent | 4e490cbc7472da69e481146c8bf932027623f33c (diff) | |
download | mupdf-51d84cb3b67ab17f2eae1530044d531320e6a5fa.tar.xz |
Add annotation QuadPoints creation functions.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/pdf/annot.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/mupdf/pdf/annot.h b/include/mupdf/pdf/annot.h index 4b012ed7..1fb0ab0e 100644 --- a/include/mupdf/pdf/annot.h +++ b/include/mupdf/pdf/annot.h @@ -165,7 +165,10 @@ void pdf_set_annot_rect(fz_context *ctx, pdf_annot *annot, const fz_rect *rect); void pdf_set_annot_border(fz_context *ctx, pdf_annot *annot, float width); void pdf_set_annot_color(fz_context *ctx, pdf_annot *annot, int n, const float color[4]); void pdf_set_annot_interior_color(fz_context *ctx, pdf_annot *annot, int n, const float color[4]); + void pdf_set_annot_quad_points(fz_context *ctx, pdf_annot *annot, int n, const float *v); +void pdf_clear_annot_quad_points(fz_context *ctx, pdf_annot *annot); +void pdf_add_annot_quad_point(fz_context *ctx, pdf_annot *annot, fz_rect bbox); void pdf_set_annot_ink_list(fz_context *ctx, pdf_annot *annot, int n, const int *count, const float *v); void pdf_clear_annot_ink_list(fz_context *ctx, pdf_annot *annot); |