diff options
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); |