Resize Images in Python With Pillow · image = Image.open('demo_image.jpg') · image.thumbnail((400, 400)) · image.save('image_thumbnail.jpg') · print(image.size) # ...
確定! 回上一頁