You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
169 B

from PIL import Image
img = Image.open('img5.png')
w,h = img.size
out = img.transform((800,600), Image.Transform.QUAD, [100, 100, 500, 600, 400, 700, 50])
out.show()