📜  Wand – 转换图像格式

📅  最后修改于: 2022-05-13 01:55:49.314000             🧑  作者: Mango

Wand – 转换图像格式

图像格式描述了图像数据的存储方式。不同的图像格式有不同的优缺点。大约有 7 种最常见的图像格式用于不同的情况。
例如 – JPEG 格式的优点是它支持多达 1600 万种颜色的 24 位颜色。因此,具有高分辨率。而 PNG 格式的分辨率较低。

图像文件格式:
1.JPEG(.jpeg)
2.PNG(.png)
3. TIFF(.tif or.tiff)
4. GIF(.gif)
5.位图(.bmp)
6. EPS(.eps)

注意:要详细了解图像格式,请参阅 – 图像格式文章。

我们可以使用Python中的 Wand 库使用format属性将一种图像格式转换为另一种图像格式。

句法 :

wand.image.format = 'final_format'

代码 :

# import Image from wand.image module
from wand.image import Image
  
# Read .png image using Image() function
with Image(filename ='koala.png') as img:
  
    # Change format in python using format property
    img.format = 'jpeg'
  
    # Save final image
    img.save(filename ='koala.jpg')

在输出中,我们将得到一个名为koala.jpeg的图像,图像格式为 jpeg。