summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/document.h
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2015-09-01 16:16:24 -0700
committerMichael Vrhel <michael.vrhel@artifex.com>2015-09-02 08:43:59 -0700
commit6034e61c32dd57e1bf257290b39b6634f7893230 (patch)
tree0d3ec0b28e2126de21f4c601507511072a0ca73c /include/mupdf/fitz/document.h
parentb30cc7aa30c5400893cb9c5f70d5ce8ca21c3831 (diff)
downloadmupdf-6034e61c32dd57e1bf257290b39b6634f7893230.tar.xz
Add in support for icc profiles in gprf/gproof format
The default profile case (sRGB and SWOP CMYK) are indicated by empty strings for those entries.
Diffstat (limited to 'include/mupdf/fitz/document.h')
-rw-r--r--include/mupdf/fitz/document.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/mupdf/fitz/document.h b/include/mupdf/fitz/document.h
index 5723bcc8..efd51332 100644
--- a/include/mupdf/fitz/document.h
+++ b/include/mupdf/fitz/document.h
@@ -392,7 +392,12 @@ const char *fz_get_separation_on_page(fz_context *ctx, fz_page *page, int sep, u
filename: The filename of the desired gproof file.
res: The resolution at which proofing should be done.
+
+ print_profile: The filename of the ICC profile for the printer we are proofing
+
+ display_profile: The filename of the ICC profile for our display device
*/
-void fz_write_gproof_file(fz_context *ctx, const char *doc_filename, fz_document *doc, const char *filename, int res);
+void fz_write_gproof_file(fz_context *ctx, const char *doc_filename, fz_document *doc, const char *filename, int res,
+ const char *print_profile, const char *display_profile);
#endif