mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
897 B
897 B
Pillow
Standard Imports
from PIL import Image
OPENING IMAGE FILE
Returns IOError
if file cannot be opened.
image = Image.open(filepath, mode) # open image file (returns Image object)
# FILEPATH: filename (string) or file object (musk implement seek, tell, write methods)
image.format # image file extension
image.size # 2-tuple (width, height) in pixels
image.mode # defines number and name of bands in image, pixel type and depth
SAVING IMAGE FILE
image.save(filepath, fmt)
# FMT: optional format override
IMAGE CROPPING
box = (left, top, right, bottom) # position in pixels
cropped = image.crop(box)
IMAGE PASTE
# region dimension MUST be same as box
image.paste(region, box)
SPLITTING AND MERGING BANDS
image.mode
should be RGB
r, g, b = image.split()
img = image.merge(r, g, b)