이 기사의 예에서는 Python에서 이미지 크기를 변경하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
1. PIL 패키지에는 베개를 권장합니다.
2. 소스 코드:
#encoding=utf-8 #author: walker #date: 2014-05-15 #function: 更改图片尺寸大小 import os import os.path from PIL import Image ''' filein: 输入图片 fileout: 输出图片 width: 输出图片宽度 height:输出图片高度 type:输出图片类型(png, gif, jpeg...) ''' def ResizeImage(filein, fileout, width, height, type): img = Image.open(filein) out = img.resize((width, height),Image.ANTIALIAS) #resize image with high-quality out.save(fileout, type) if __name__ == "__main__": filein = r'image\test.png' fileout = r'image\testout.png' width = 60 height = 85 type = 'png' ResizeImage(filein, fileout, width, height, type)
이 글이 Python 프로그래밍에 종사하는 모든 분들께 도움이 되기를 바랍니다.
이미지 크기를 변경하는 더 많은 Python 방법(Pillow 패키지 기준) 관련 기사를 보려면 PHP 중국어 웹사이트에 주목하세요!