Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: imageConversion.py

Issue 6406754824880128: Issue 2038 - Convert palette images with transparency to RGBA before pasting (Closed)
Patch Set: Created Feb. 24, 2015, 3:53 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: imageConversion.py
===================================================================
--- a/imageConversion.py
+++ b/imageConversion.py
@@ -16,20 +16,6 @@
from imageCompression import image_to_file
-def get_alpha(image):
- if image.mode in ('RGBA', 'LA'):
- return image.split()[image.getbands().index('A')]
-
- # In order to generate an alpha channel for images using a palette, we
- # convert the image to RGBA. It's important to use RGBA, not LA (grayscale+alpha),
- # since PIL can't reliably convert P to LA. Also initially, we created an
- # alpha channel by replacing opaque pixels with a high mark and transparent
- # pixels with a low mark. However, it turned out that you can't rely on the
- # value of Image.info['transparency'] since in some cases it might be an
- # unparsed string instead an int indicating the value of transparent pixels.
- if image.mode == 'P' and 'transparency' in image.info:
- return image.convert('RGBA').split()[3]
-
def load_image(path):
image = Image.open(path)
# Make sure the image is loaded, some versions of PIL load images lazily.
@@ -65,8 +51,28 @@
)
def filter_contrastToAlpha(image, baseDir):
+ # In order to generate an alpha channel for images using a palette, we must
+ # convert the image to RGBA. It's important to use RGBA, not LA (grayscale+alpha),
+ # since PIL can't reliably convert P to LA. Also initially, we created an
+ # alpha channel by replacing opaque pixels with a high mark and transparent
+ # pixels with a low mark. However, it turned out that you can't rely on the
+ # value of Image.info['transparency'] since in case the transparency is
+ # specified in bytes (pngout loves to that shit), we can't associate that
Wladimir Palant 2015/02/24 17:08:13 Want to censor out the remark in parentheses?
Sebastian Noack 2015/02/24 17:19:23 Done.
+ # value with transparent pixels. Moreover, some versions of PIL raise a
+ # warning when such images are pasted into another image.
+ if image.mode == 'P' and 'transparency' in image.info:
+ image = image.convert("RGBA")
Wladimir Palant 2015/02/24 17:08:13 Nit: I don't mind which quotation marks you use bu
Sebastian Noack 2015/02/24 17:19:23 Done.
+
+ # Image.paste() isgnores the alpha channel of the pasted image, but expects
Wladimir Palant 2015/02/24 17:08:13 isgnores => ignores
Sebastian Noack 2015/02/24 17:19:23 This has already been fixed by the previous change
+ # the mask to be passed as sperate argument. So we have to extract the alpha
Wladimir Palant 2015/02/24 17:08:13 sperate => separate
Sebastian Noack 2015/02/24 17:19:23 Done.
+ # channel (if any) from the image we are going to paste.
+ if image.mode in ('RGBA', 'LA'):
+ mask = image.split()[image.getbands().index('A')]
+ else:
+ mask = None
+
alpha = Image.new('L', image.size, 255)
- alpha.paste(image, mask=get_alpha(image))
+ alpha.paste(image, mask=mask)
alpha = ImageOps.invert(alpha)
alpha = ImageOps.autocontrast(alpha)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld