diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-06-16 12:23:11 +0200 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2016-06-16 18:08:15 +0100 |
commit | adc06f3c7f4ca0acbee8b5be84d72d716b60b5a0 (patch) | |
tree | 0fab413b744abf39086e3fb9d007fe162f577f0d /include | |
parent | 000e932a844ecc6cd59ae9cadc3c3150d4a6bf5b (diff) | |
download | mupdf-adc06f3c7f4ca0acbee8b5be84d72d716b60b5a0.tar.xz |
Add PNG output for mutool convert.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/fitz/writer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mupdf/fitz/writer.h b/include/mupdf/fitz/writer.h index 064b8465..98b0824a 100644 --- a/include/mupdf/fitz/writer.h +++ b/include/mupdf/fitz/writer.h @@ -26,9 +26,11 @@ void fz_close_document_writer(fz_context *ctx, fz_document_writer *wri); void fz_drop_document_writer(fz_context *ctx, fz_document_writer *wri); fz_document_writer *fz_new_cbz_writer(fz_context *ctx, const char *path, const char *options); +fz_document_writer *fz_new_png_writer(fz_context *ctx, const char *path, const char *options); fz_document_writer *fz_new_pdf_writer(fz_context *ctx, const char *path, const char *options); extern const char *fz_cbz_write_options_usage; +extern const char *fz_png_write_options_usage; extern const char *fz_pdf_write_options_usage; #endif |