summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-10-14 13:16:08 +0200
committerTor Andersson <tor.andersson@artifex.com>2015-10-14 13:40:25 +0200
commit3722dcf128a98e9e92774b3f8f7326ee2ad98e84 (patch)
treee98f73659c6b0f46039ad3f94aac0cc570077a09
parent6bfb34fc98dfec2e5cb24888a240cfd651dc511b (diff)
downloadmupdf-3722dcf128a98e9e92774b3f8f7326ee2ad98e84.tar.xz
Scale colors of JPEG2000 images with bit depths less than eight.
-rw-r--r--source/fitz/load-jpx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/fitz/load-jpx.c b/source/fitz/load-jpx.c
index 7cd36474..6b92e5c8 100644
--- a/source/fitz/load-jpx.c
+++ b/source/fitz/load-jpx.c
@@ -224,6 +224,8 @@ fz_load_jpx(fz_context *ctx, unsigned char *data, int size, fz_colorspace *defcs
v = v + (1 << (depth - 1));
if (depth > 8)
v = v >> (depth - 8);
+ else if (depth < 8)
+ v = v << (8 - depth);
*p++ = v;
}
if (!a)