Python uses pil to fill the background color with png images,

Source: Internet
Author: User

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.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.