python將PNG格式的圖片轉化成爲jpg

"""
    先來講一下jpg圖片和png圖片的區別
    jpg格式:是有損圖片壓縮類型,可用最少的磁盤空間獲得較好的圖像質量
    png格式:不是壓縮性,能保存透明等圖

"""
from PIL import Image
import cv2 as cv
import os

def PNG_JPG(PngPath):
    img = cv.imread(PngPath, 0)
    w, h = img.shape[::-1]
    infile = PngPath
    outfile = os.path.splitext(infile)[0] + ".jpg"
    img = Image.open(infile)
    img = img.resize((int(w / 2), int(h / 2)), Image.ANTIALIAS)
    try:
        if len(img.split()) == 4:
            # prevent IOError: cannot write mode RGBA as BMP
            r, g, b, a = img.split()
            img = Image.merge("RGB", (r, g, b))
            img.convert('RGB').save(outfile, quality=70)
            os.remove(PngPath)
        else:
            img.convert('RGB').save(outfile, quality=70)
            os.remove(PngPath)
        return outfile
    except Exception as e:
        print("PNG轉換JPG 錯誤", e)


if __name__ == '__main__':
    PNG_JPG(r"C:\Users\lenovo\Desktop\newI\s.png")
相關文章
相關標籤/搜索