From a4a50269b2c62fddf34445140036e3f61b500d9e Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Mon, 10 Feb 2014 16:54:24 +0000 Subject: 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). --- source/fitz/document-no-run.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/fitz/document-no-run.c') diff --git a/source/fitz/document-no-run.c b/source/fitz/document-no-run.c index b0defe91..2fd608ee 100644 --- a/source/fitz/document-no-run.c +++ b/source/fitz/document-no-run.c @@ -6,4 +6,5 @@ void fz_register_no_run_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); } -- cgit v1.2.3