summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/pdf_image.h')
-rw-r--r--pdf/pdf_image.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/pdf/pdf_image.h b/pdf/pdf_image.h
new file mode 100644
index 00000000..449e90ef
--- /dev/null
+++ b/pdf/pdf_image.h
@@ -0,0 +1,30 @@
+/* Copyright (C) 2018-2021 Artifex Software, Inc.
+ All Rights Reserved.
+
+ This software is provided AS-IS with no warranty, either express or
+ implied.
+
+ This software is distributed under license and may not be copied,
+ modified or distributed except as expressly authorized under the terms
+ of the license contained in the file LICENSE in this distribution.
+
+ Refer to licensing information at http://www.artifex.com or contact
+ Artifex Software, Inc., 1305 Grant Avenue - Suite 200, Novato,
+ CA 94945, U.S.A., +1(415)492-9861, for further information.
+*/
+
+/* Image operations for the PDF interpreter */
+
+#ifndef PDF_IMAGE_OPERATORS
+#define PDF_IMAGE_OPERATORS
+
+int pdfi_BI(pdf_context *ctx);
+int pdfi_EI(pdf_context *ctx);
+int pdfi_ID(pdf_context *ctx, pdf_dict *stream_dict, pdf_dict *page_dict, pdf_c_stream *source);
+int pdfi_Do(pdf_context *ctx, pdf_dict *stream_dict, pdf_dict *page_dict);
+int pdfi_do_highlevel_form(pdf_context *ctx, pdf_dict *page_dict, pdf_stream *form_stream);
+int pdfi_do_image_or_form(pdf_context *ctx, pdf_dict *stream_dict, pdf_dict *page_dict, pdf_obj *xobject_obj);
+int pdfi_form_execgroup(pdf_context *ctx, pdf_dict *page_dict, pdf_stream *xobject_dict,
+ gs_gstate *GroupGState, gs_color_space *pcs, gs_matrix *matrix);
+
+#endif