Skip to main content

A Image Processing Library

Project description

pypixel

This is a Python image process library

Feature

  • open and save an Image
  • show an Image
  • convert RGB to Gray
  • convert RGB to Binary

Usage

Import package

from pypixel import Image

Open an Image

img = Image.open("filepath")

Save an Image

img = Image.open("filepath")
...
# Do something to img
...
img.save("filepath")

Show an Image

img = Image.open("filepath")
img.show()

Convert to gray

img = Image.open("url")
img = img.gray()    # default : Float Algorithm
img = img.gray("F") # Float Algorithm : r*0.3+g*0.59+b*0.11
img = img.gray("G") # Green Only

Convert to binary

img = Image.open("url")
img = img.binary()

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

pypixel-1.0.0.tar.gz (2.0 kB view hashes)

Uploaded Source

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