Skip to content
Advertisement

Pasting a png on to another png without covering up the background image (pillow)

As the name of the suggests I want to paste a png onto another png. However when I try to do this it’s kinda like PIL changes the pixels occupied by the alpha channel to to be transparent.

Here’s an example to show you what I mean.

First I make a solid green block and save it as a png

JavaScript

The image look like this:

enter image description here

Next I make a second, smaller, fully transparent image and paste that on the saved image.

JavaScript

Here is the result:

enter image description here

What I want is for that last image to look like the first one. After pasting the transparent block onto it.

Advertisement

Answer

as commented by @jasonharper,

.paste() uses a separate mask image to specify where to change pixels. You want .alpha_composite() to use the image’s own alpha channel as the mask.

A function that does the same is as follows:

JavaScript

You can replicate your example by : you can learn more about them: paste() and alpha_composite().

(PS: this is my first answer on stackoverflow)

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement