from PIL import Image img = Image.open('D:\\image_for_test\\Spee.jpg') print("初始尺寸",img.size) print("默认缩放NEARESET",img.resize((128,128)).size) ...
確定! 回上一頁