Answers for "img crop pythom"

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

how to cut image python

im = Image.open('0.png').convert('L')
im = im.crop((1, 1, 98, 33))
im.save('_0.png')
Posted by: Guest on July-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language