Use Python PIL module to merge two images
Last Updated on 2020-11-30 by Clay
Introduction
Recently, because I have been studying the interface of the program, I got many strange problems.
I want to record today is how to merge two pictures. I found that if I simply use the composite()
function in PIL, the second picture will be overwritten by the first picture. So, I started to try convert the background of the second picture to transparent.
After converting the image to a transparent background, the result of the merging is quite natural to me.
I will start to introduce how to merge two pictures in below.
Read More »Use Python PIL module to merge two images