from PIL import Image. im = Image.open("sample3.png") region = im.crop((50, 50, 100, 100)) region.save("region.sample3.png") ...
確定! 回上一頁