Python uses pil to fill the background color with png images,
This example describes how to fill the background color with a png image through pil in python. Share it with you for your reference. The specific analysis is as follows:
Some png images have no background color. If you want to fill the background with a monochrome (such as white), you can use the following code to fill the jb51.net.png image in the current directory with a white background.
Use the background color of the specified color, and then fill the image with the alpha channel to the monochrome background.
For example, the following uses a white background:
Im = Image.open('jb51.net.png ') x, y = im. size try: # Fill the background with white from: www.jb51.net # (alpha band as paste mask ). p = Image. new ('rgba', im. size (255,255,255) p. paste (im, (0, 0, x, y), im) p.save('jb51.net.png ') failed T: pass
I hope this article will help you with Python programming.