summaryrefslogtreecommitdiff
path: root/source/fitz/colorspace.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-05-24 19:55:42 +0100
committerRobin Watts <robin.watts@artifex.com>2016-05-26 10:36:35 +0100
commit82b600dac5eb34b0c156302581303be834d655ce (patch)
tree148a78649363b3c6add02ce1e0f057fab3cdbf57 /source/fitz/colorspace.c
parentee972fbfa1093fe2e8641dc450e1c20347df2b04 (diff)
downloadmupdf-82b600dac5eb34b0c156302581303be834d655ce.tar.xz
Cope better when asked to plot alpha only pixmaps.
Converting a pixmap to an alpha only pixmap means "just keep the alpha". If there IS no alpha, then a solid alpha is assumed.
Diffstat (limited to 'source/fitz/colorspace.c')
-rw-r--r--source/fitz/colorspace.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/fitz/colorspace.c b/source/fitz/colorspace.c
index 7923446a..298c4712 100644
--- a/source/fitz/colorspace.c
+++ b/source/fitz/colorspace.c
@@ -1633,9 +1633,12 @@ fz_convert_pixmap(fz_context *ctx, fz_pixmap *dp, fz_pixmap *sp)
fz_colorspace *ss = sp->colorspace;
fz_colorspace *ds = dp->colorspace;
- if (ds == NULL && sp->alpha)
+ if (ds == NULL)
{
- fast_copy_alpha(dp, sp);
+ if (sp->alpha)
+ fast_copy_alpha(dp, sp);
+ else
+ fz_clear_pixmap_with_value(ctx, dp, 255);
return;
}