Answers for "python pillow cut part of image"

5

pil crop image

im = Image.open('image.jpg') 
im = im.crop((left, top, right, bottom))  # coordinates of the crop
Posted by: Guest on October-17-2020
0

crop image python

from PIL import Image # import pillow library (can install with "pip install pillow")
im = Image.open('card.png')
im = im.crop( (1, 0, 826, 1125) ) # previously, image was 826 pixels wide, cropping to 825 pixels wide
im.save('card.png') # saves the image
# im.show() # opens the image
Posted by: Guest on September-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language