summaryrefslogtreecommitdiff
path: root/source/fitz/document-all.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2014-02-10 16:54:24 +0000
committerRobin Watts <robin.watts@artifex.com>2014-02-10 17:04:03 +0000
commita4a50269b2c62fddf34445140036e3f61b500d9e (patch)
treee5ab2bf4e75d0b96f0cced8f8e42dde3e564dc54 /source/fitz/document-all.c
parent9b9438fa4210b29023f85bb98c73f8f58a7760d5 (diff)
downloadmupdf-a4a50269b2c62fddf34445140036e3f61b500d9e.tar.xz
Bug 695022: Add TIFF format handler
Patch from Thomas Fach-Pedersen. Many thanks! Add a new format handler that copes with TIFF files. This replaces the TIFF functionality within the image format handler, and is better because this copes with multiple images (as one image per page).
Diffstat (limited to 'source/fitz/document-all.c')
-rw-r--r--source/fitz/document-all.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/fitz/document-all.c b/source/fitz/document-all.c
index 92b1c037..e1eb4a58 100644
--- a/source/fitz/document-all.c
+++ b/source/fitz/document-all.c
@@ -6,4 +6,5 @@ void fz_register_document_handlers(fz_context *ctx)
fz_register_document_handler(ctx, &xps_document_handler);
fz_register_document_handler(ctx, &cbz_document_handler);
fz_register_document_handler(ctx, &img_document_handler);
+ fz_register_document_handler(ctx, &tiff_document_handler);
}