summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/image.h
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-06-26 07:22:22 +0200
committerSebastian Rasmussen <sebras@gmail.com>2016-07-05 02:28:39 +0800
commitd42362b328019e106b1b6bfb267ada7844158b6e (patch)
treeece9821083dc0c8c2c9e5c56a409ec16691dca6d /include/mupdf/fitz/image.h
parent653e62cf843fa04c9bc358130daab0285eb21fe6 (diff)
downloadmupdf-d42362b328019e106b1b6bfb267ada7844158b6e.tar.xz
Support J2K/JP2 files in CBZ.
Diffstat (limited to 'include/mupdf/fitz/image.h')
-rw-r--r--include/mupdf/fitz/image.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mupdf/fitz/image.h b/include/mupdf/fitz/image.h
index 337fd075..bc2879d9 100644
--- a/include/mupdf/fitz/image.h
+++ b/include/mupdf/fitz/image.h
@@ -115,6 +115,7 @@ fz_pixmap *fz_load_gif(fz_context *ctx, unsigned char *data, size_t size);
fz_pixmap *fz_load_bmp(fz_context *ctx, unsigned char *data, size_t size);
void fz_load_jpeg_info(fz_context *ctx, unsigned char *data, size_t size, int *w, int *h, int *xres, int *yres, fz_colorspace **cspace);
+void fz_load_jpx_info(fz_context *ctx, unsigned char *data, size_t size, int *w, int *h, int *xres, int *yres, fz_colorspace **cspace);
void fz_load_png_info(fz_context *ctx, unsigned char *data, size_t size, int *w, int *h, int *xres, int *yres, fz_colorspace **cspace);
void fz_load_tiff_info(fz_context *ctx, unsigned char *data, size_t size, int *w, int *h, int *xres, int *yres, fz_colorspace **cspace);
void fz_load_jxr_info(fz_context *ctx, unsigned char *data, size_t size, int *w, int *h, int *xres, int *yres, fz_colorspace **cspace);