■ PngImageFile 클래스의 resize 메소드를 사용해 이미지 크기를 변경하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 |
from PIL import Image pngImageFile = Image.open("sample.png") image = pngImageFile.resize((200, 200)) image.show() |
■ PngImageFile 클래스의 resize 메소드를 사용해 이미지 크기를 변경하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 |
from PIL import Image pngImageFile = Image.open("sample.png") image = pngImageFile.resize((200, 200)) image.show() |