from PIL import Image image = Image.open('python.png') rect = 80, 20, 310, 360 # 左, 上, 右, 下image.crop(rect).show() # crop() 切割.
確定! 回上一頁