7 lines
165 B
Python
7 lines
165 B
Python
from PIL import Image
|
|
img = Image.open("Bordeaux.jpeg")
|
|
new_img = img.resize((100, 200))
|
|
new_img.save("photo.jpeg", "jpeg")
|
|
print(new_img.size)
|
|
new_img.show()
|