PIL: Unexpected results with Image.paste on RGBA images with transparency.
Lars Ruoff <[email protected]> Mon, 29 Oct 2012 16:05:28 +0100
| Newsgroups | gmane.comp.python.image |
|---|---|
| Message-ID | <CACWkZz2nuBYeaW5PEmwy3vu3DALtKmfyjRv2s9wULTRL8PVNJg@mail.gmail.com> |
Hi,
I'm new to this list, so excuse me if this is a known issue.
I didn't find anything on it on the net so far but didn't have time to
search much.
I have observed what i consider a flaw in the Image.paste algorithm when
used with transparent images.
transparent-columns.png is an image with 3 vertical black columns with
alpha=0.5, 0.2 and transparent respectively.
transparent-bars.png is an image with 2 horizontal black bars with
transparent and alpha=0.5 respectively.
(images attached)
When these two images are transparently pasted one over the other, using
the following code:
from PIL import Image
source = Image.open('transparent-columns.png')
result = Image.open('transparent-bars.png')
result.paste(source, (0, 0), source)
result.save('transparent-columns-on-bars-pil.png')
The result is unexpectet to say the least.
PIL seems to modify the transparency even in regions where only one of the
images has non-transparent values.
Very wrong in my opinion.
Doing the same manipulation in GIMP 2.6 gives what i consider the expected
result.
(attached for reference)
I guess the per-pixel transparency of the result should be result_alpha = 1
- (1-alpha1)*(1-alpha2),
where alpha1,alpha2 are the alpha channel values from the original images.
Regards,
Lars Ruoff
_______________________________________________
Image-SIG maillist - [email protected]
http://mail.python.org/mailman/listinfo/image-sig
transparent-bars.png
(image/png, 315 B) - not displayed
transparent-columns.png
(image/png, 383 B) - not displayed
transparent-columns-on-bars-gimp-2.6.png
(image/png, 401 B) - not displayed
transparent-columns-on-bars-gimp-2.6-with-white-background.png
(image/png, 406 B) - not displayed
transparent-columns-on-bars-pil.png
(image/png, 390 B) - not displayed
transparent-columns-on-bars-pil-with-white-background.png
(image/png, 363 B) - not displayed