summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/fitz/image.c10
-rw-r--r--source/xps/xps-image.c1
2 files changed, 11 insertions, 0 deletions
diff --git a/source/fitz/image.c b/source/fitz/image.c
index 0aeb449d..899232e0 100644
--- a/source/fitz/image.c
+++ b/source/fitz/image.c
@@ -299,6 +299,16 @@ fz_image_get_pixmap(fz_context *ctx, fz_image *image, int w, int h)
indexed = fz_colorspace_is_indexed(image->colorspace);
tile = fz_decomp_image_from_stream(ctx, stm, image, 0, indexed, l2factor, native_l2factor);
+
+ /* CMYK JPEGs in XPS documents have to be inverted */
+ if (image->invert_cmyk_jpeg &&
+ image->buffer->params.type == FZ_IMAGE_JPEG &&
+ image->colorspace == fz_device_cmyk(ctx) &&
+ image->buffer->params.u.jpeg.color_transform)
+ {
+ fz_invert_pixmap(ctx, tile);
+ }
+
break;
}
diff --git a/source/xps/xps-image.c b/source/xps/xps-image.c
index cff7860d..9b2aefcb 100644
--- a/source/xps/xps-image.c
+++ b/source/xps/xps-image.c
@@ -110,6 +110,7 @@ xps_parse_image_brush(xps_document *doc, const fz_matrix *ctm, const fz_rect *ar
fz_try(doc->ctx)
{
image = xps_load_image(doc->ctx, part);
+ image->invert_cmyk_jpeg = 1;
}
fz_always(doc->ctx)
{