summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/writer.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-02-16 16:21:23 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-02-20 12:47:15 +0100
commit7ff59224621050fc29bf455b28e583b4c339f251 (patch)
tree08161f2ed787ccb598ee06608181dd0c7a2f74ea /include/mupdf/fitz/writer.h
parentc169bee7e5a09bec74a5e99ff497844e898b87c0 (diff)
downloadmupdf-7ff59224621050fc29bf455b28e583b4c339f251.tar.xz
Add svg writer.
Now mutool convert can write SVG documents.
Diffstat (limited to 'include/mupdf/fitz/writer.h')
-rw-r--r--include/mupdf/fitz/writer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/mupdf/fitz/writer.h b/include/mupdf/fitz/writer.h
index b9d28138..bf6a9175 100644
--- a/include/mupdf/fitz/writer.h
+++ b/include/mupdf/fitz/writer.h
@@ -28,11 +28,13 @@ 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);
+fz_document_writer *fz_new_png_writer(fz_context *ctx, const char *path, const char *options);
+fz_document_writer *fz_new_svg_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;
+extern const char *fz_png_write_options_usage;
+extern const char *fz_svg_write_options_usage;
#endif