Skip to main content

some useful snippet for image

Project description

pillow_snippet

some useful snippet and utils using pillow to handle image

Requirements

  • Pillow

Install

pip install pillow-snippet

Documentation

Tutorial

  • origin image
    originimage
  • convert an Image to a circled Image
from pillow_snippet import convert
origin_image = Image.open('colorful_example.png')
image = origin_image.resize((200, 200))
circle_image = convert.circle_image(image)
circle_image.save("test_result/circle_image.png")

circle-image

  • delete the white pixel from an image
    it seems there is still white but if fact it is transparent. You can open the image in new tab to see more details
mask = Mask(image)
exclude_white_image = mask.get_exclude_white_image(tolerance=8)
exclude_white_image.save("test_result/exclude_white_image.png")

no white image

  • convert the imge to only contains red color
mask = Mask(image)
change_to_red_image = mask.convert_to_single_color("#ff0000ff")
change_to_red_image.save("test_result/change_to_red_image.png")

only red image

Contribution

  1. clone the code
  2. make your commit
  3. make test
sudo pip install .
python3 test.py
  1. create a pull request

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pillow-snippet-0.0.3.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

pillow_snippet-0.0.3-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page