使用Python製作辦公神器,一鍵批量修改圖片的尺寸!
文章目錄(進群:700341555 即可自動獲取大量python視訊教程以及各類PDF和原始碼案例!)
- 1. 引入標準庫
- 2. 開始編寫指令碼
需求驅動學習,最近在上傳圖片到簡書時,發現圖片的大小不合適,網上搜了很多文章,有的說改url後面的寬度引數,但試過不生效,有的說要用標籤,貌似也不行,所以只能將本地的圖片修改到合適的尺寸後再上傳咯。但是這麼多圖片難道要一張一張地手動修改嗎?不太合理吧。所以就想到了用Python來寫個指令碼批量修改圖片的大小。網上也有例子,也是參考網上的例子進行學習並應用到實踐當中去的。
引入標準庫
<pre class="ql-align-justify" style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">#引入Image庫
from PIL import Image
</pre>
這時初步執行會報錯誤:ImportError: No module named Image
首先需要用到Python的PIL:Python Imaging Library,Python的圖片處理標準庫。不過只支援到Python 2.7。Pillow是PIL的一個派生分支,已發展到比PIL更為靈活。我們這裡安裝Pillow。使用pip或easy_install進行安裝,如果沒有安裝這兩個工具,先進行安裝。
$ sudo pip install Pillow
不到一分鐘就安裝成功了。
開始編寫指令碼
接下來就是編寫Python指令碼來批量處理圖片了。
<pre class="ql-align-justify" style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">#!/usr/bin/python
-- coding: UTF-8 --
"""
@author: 淺談iOS技術
time: 2018-11-23
@function:簡單的批量修改某目錄下的所有圖片大小
"""
from PIL import Image
import os.path
import sys
import glob
圖片目錄(暫時是寫死的,可修改為通過外部傳參)
sourcePath = sys.argv[0]
修改後儲存的目錄
savepath = sys.argv[1];
sourcePath = "/Users/root/develop/origin_path/*.png"
savePath = "/Users/root/develop/save_resized/"
print "*******開始處理*********"
比較兩個字串是否相同
def astrcmp(str1, str2):
return str1.lower() == str2.lower()
"""
修改圖片的大小
img_path: 圖片的路徑
new_width: 新寬度
"""
def resize_image(img_path,new_width):
try:
分離路徑和字尾
mPath, ext = os.path.splitext(img_path)
是否是圖片格式
if astrcmp(ext, ".png") or astrcmp(ext, ".jpg"):
開啟圖片
img = Image.open(img_path)
獲取圖片的原始大小
(width, height) = img.size
根據新的寬度獲得縮放新的高度
new_height = int(height * new_width / width)
開始改變大小,大於600才修改
if width > 600:
out = img.resize((new_width, new_height), Image.ANTIALIAS)
else:
out = img.resize((width, height),Image.ANTIALIAS)
new_file_name = '%s%s' % (mPath, ext)
分割獲取圖片名稱
new_file_name = os.path.split(img_path)[1]
new_file_path = '%s%s' % (savePath,new_file_name)
儲存圖片
out.save(new_file_path, quality=100)
print "圖片尺寸修改為:" + str(new_width) + "
新圖片路徑:"+new_file_path
else:
print "非圖片格式"
except Exception , e:
print "出現錯誤了:" + e
測試
resize_image(sourcePath,600)
批量修改,使用glob模組
for imgPath in glob.glob(r"/Users/maojianyu/develop/App-Store/*.png"):
迴圈去改變圖片大小
resize_image(imgPath,600)</pre>