首頁 >後端開發 >Python教學 >Python實作改變圖片尺寸大小的方法(基於Pillow套件)

Python實作改變圖片尺寸大小的方法(基於Pillow套件)

高洛峰
高洛峰原創
2017-01-14 13:22:522608瀏覽

本文實例講述了Python實現更改圖片尺寸大小的方法。分享給大家供大家參考,如下:

1、PIL包推薦Pillow 。

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中文網!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn