起步
很多小伙伴從網上找的圖片可能圖片尺寸與自己的需求不符合
今天小編就教大家使用python寫一個簡單腳本程序實現修改圖片的尺寸
環境准備
首先我們需要python環境,它的安裝可以參考:python安裝以及版本檢測
其次我們還需要安裝一個python圖形化的庫PIL
PIL的安裝,這里我們使用pip來進行安裝,關於pip可以參考:Python pip 安裝與使用
pip安裝好后,在終端中執行
pip install PIL
等待安裝完成即可
如果安裝了pycharm的同學可以在設置中的解釋器欄里面直接進行安裝
這里小編推薦使用pycharm進行安裝
關於它的安裝可以參考:PyCharm的安裝以及破解
源碼參考
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Created by victor
# 本模塊的功能:<更改圖片尺寸>
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/plane.png'
fileout = r'./image/planesm.png'
width = 50
height = 50
type = 'png'
ResizeImage(filein, fileout, width, height, type)
相關推薦
關於Python相關內容感興趣的讀者可查看專題:
《Python圖片操作技巧總結》
《Python數據結構與算法教程》
《Python Socket編程技巧總結》
《Python函數使用技巧總結》
《Python字符串操作技巧匯總》
《Python入門與進階經典教程》
《Python文件與目錄操作技巧匯總》
