diff options
author | Robin Watts <robin.watts@artifex.com> | 2013-04-05 15:49:10 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2013-04-11 19:00:39 +0100 |
commit | 53b5ede268394d651df1f12da490884bf870006a (patch) | |
tree | 72145964ff775415674c73b1e05ea18669238278 /android/jni | |
parent | 05f9887c211fff4195b5959bc71d2ef4b773fdc2 (diff) | |
download | mupdf-53b5ede268394d651df1f12da490884bf870006a.tar.xz |
Move pdf_image to fz_image.
In order to be able to output images (either in the pdfwrite device or
in the html conversion), we need to be able to get to the original
compressed data stream (or else we're going to end up recompressing
images). To do that, we need to expose all of the contents of pdf_image
into fz_image, so it makes sense to just amalgamate the two.
This has knock on effects for the creation of indexed colorspaces,
requiring some of that logic to be moved.
Also, we need to make xps use the same structures; this means pushing
PNG and TIFF support into the decoding code. Also we need to be able
to load just the headers from PNG/TIFF/JPEGs as xps doesn't include
dimension/resolution information.
Also, separate out all the fz_image stuff into fitz/res_image.c rather
than having it in res_pixmap.
Diffstat (limited to 'android/jni')
-rw-r--r-- | android/jni/Core.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/jni/Core.mk b/android/jni/Core.mk index fb889b57..b3619261 100644 --- a/android/jni/Core.mk +++ b/android/jni/Core.mk @@ -74,6 +74,7 @@ LOCAL_SRC_FILES := \ $(MY_ROOT)/fitz/res_colorspace.c \ $(MY_ROOT)/fitz/res_font.c \ $(MY_ROOT)/fitz/res_func.c \ + $(MY_ROOT)/fitz/res_image.c \ $(MY_ROOT)/fitz/res_path.c \ $(MY_ROOT)/fitz/res_pixmap.c \ $(MY_ROOT)/fitz/res_store.c \ |