圖片的尺寸進行統一轉換
###宣告:不是原創。。。忘記從哪裡轉的,謝謝作者
#coding:utf-8
import osfrom PIL import Image, ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
#圖片壓縮批處理
def compressImage(srcPath,dstPath):
for filename in os.listdir(srcPath):
#如果不存在目的目錄則建立一個,保持層級結構
if not os.path.exists(dstPath):
os.makedirs(dstPath)
#拼接完整的檔案或資料夾路徑
srcFile = os.path.join(srcPath, filename)
dstFile = os.path.join(dstPath, filename)
print srcFile
print dstFile
#如果是檔案就處理
if os.path.isfile(srcFile):
#開啟原圖片縮小後儲存,可以用if srcFile.endswith(".jpg")或者split,splitext等函式等針對特定檔案壓縮
sImg = Image.open(srcFile)
w, h = sImg.size
print w, h
dImg=sImg.resize((256, 256), Image.ANTIALIAS) #設定壓縮尺寸和選項,注意尺寸要用括號
dImg.save(dstFile) #也可以用srcFile原路徑儲存,或者更改字尾儲存,save這個函式後面可以加壓縮編碼選項JPEG之類的
print dstFile+" compressed succeeded"
#如果是資料夾就遞迴
if os.path.isdir(srcFile):
compressImage(srcFile, dstFile)
if __name__=='__main__':
compressImage("XXX", "YYY")#XXX為轉換前圖片路徑,YYY為轉換後路徑