- Python Pillow 教程
- Python Pillow - 首页
- Python Pillow - 概述
- Python Pillow - 环境设置
- 基本图像操作
- Python Pillow - 处理图像
- Python Pillow - 调整图像大小
- Python Pillow - 翻转和旋转图像
- Python Pillow - 裁剪图像
- Python Pillow - 为图像添加边框
- Python Pillow - 识别图像文件
- Python Pillow - 合并图像
- Python Pillow - 剪切和粘贴图像
- Python Pillow - 滚动图像
- Python Pillow - 在图像上写入文本
- Python Pillow - ImageDraw 模块
- Python Pillow - 连接两张图像
- Python Pillow - 创建缩略图
- Python Pillow - 创建水印
- Python Pillow - 图像序列
- Python Pillow 颜色转换
- Python Pillow - 图像上的颜色
- Python Pillow - 使用颜色创建图像
- Python Pillow - 将颜色字符串转换为 RGB 颜色值
- Python Pillow - 将颜色字符串转换为灰度值
- Python Pillow - 通过更改像素值来更改颜色
- 图像处理
- Python Pillow - 降噪
- Python Pillow - 更改图像模式
- Python Pillow - 图像合成
- Python Pillow - 使用 Alpha 通道
- Python Pillow - 应用透视变换
- 图像滤镜
- Python Pillow - 为图像添加滤镜
- Python Pillow - 卷积滤镜
- Python Pillow - 模糊图像
- Python Pillow - 边缘检测
- Python Pillow - 浮雕图像
- Python Pillow - 增强边缘
- Python Pillow - 逆向掩膜滤镜
- 图像增强和校正
- Python Pillow - 增强对比度
- Python Pillow - 增强锐度
- Python Pillow - 增强颜色
- Python Pillow - 校正色彩平衡
- Python Pillow - 去噪
- 图像分析
- Python Pillow - 提取图像元数据
- Python Pillow - 识别颜色
- 高级主题
- Python Pillow - 创建动画 GIF
- Python Pillow - 批量处理图像
- Python Pillow - 转换图像文件格式
- Python Pillow - 为图像添加填充
- Python Pillow - 颜色反转
- Python Pillow 与 NumPy 的机器学习
- Python Pillow 与 Tkinter 的 BitmapImage 和 PhotoImage 对象
- Image 模块
- Python Pillow - 图像混合
- Python Pillow 有用资源
- Python Pillow - 快速指南
- Python Pillow - 函数参考
- Python Pillow - 有用资源
- Python Pillow - 讨论
Python Pillow - 转换图像文件格式
使用 Python Pillow **转换图像文件格式** 非常简单。您可以将图像以一种格式打开,并将其保存为另一种格式,并指定所需的输出格式。此过程通常包括以下步骤:
**打开源图像**:使用 **Image.open()** 函数打开源图像。
**保存图像**:使用 **save()** 方法以所需的格式保存图像,并指定新的文件格式和目标位置。
Pillow 可以识别并读取 30 多种不同的格式。当使用 **open()** 函数时,Pillow 根据图像内容确定格式,而不仅仅是文件名。但是,当使用 **save()** 方法保存图像时,它通常会查看文件名以决定格式,除非您明确指定要使用哪种格式。
Pillow 支持的文件格式
Pillow 支持各种图像格式的读取和写入。某些格式得到完全支持,这意味着您可以读取和写入这些格式的图像。这些包括流行的格式,如 JPEG、PNG、BMP、BLP、DDS、EPS、GIF、ICNS、ICO、MSP、PCX、PNG、PPM、SGI、TGA、TIFF、WebP 和 XBM。
此外,它还为一系列其他格式提供只读和只写支持。
- **只读格式:**CUR、DCX、FITS、FLI、FLC、FPX、GBR、GD、IMT、IPTC/NAA、MCIDAS、MIC、MPO、PCD、PIXAR、PSD、QOI、SUN、WAL 和 WMF/EMF。
- **只写格式:**PALM、PDF 和 XV 缩略图。
该库还可以识别 BUFR、GRIB、HDF5 和 MPEG 等格式的图像格式。让我们看看使用 Python Pillow 转换图像文件格式的示例。
示例
此示例将图像从 JPEG 格式转换为 PNG 格式。
from PIL import Image # Open the source image in JPEG format image = Image.open("Images/logo.jpg") # Convert and save the image in PNG format image.save("output_image_PNG_format.png") print("Image saved successfully in PNG format...")
输出
Image saved successfully in PNG format...
示例
此示例将图像从 BMP 格式转换为 GIF 格式。
from PIL import Image # Open the source image in BMP format image = Image.open("Images/lena.bmp") # Convert and save the image in GIF format image.save("output_image.gif") print("Image saved successfully in GIF format...")
输出
Image saved successfully in GIF format...
示例
此示例将图像从 GIF 格式转换为 TIFF 格式。
from PIL import Image # Open the source image in GIF format image = Image.open("Images/Book_Animation.gif") # Convert and save the image in TIFF format image.save("output_image.tiff") print("Image saved successfully in TIFF format...")
输出
Image saved successfully in TIFF format...
示例
此示例将图像从 .bpm 文件格式转换为 .jpg 格式。
from PIL import Image # Open the source image in BMP format image = Image.open("Images/lena.bmp") # Convert and save the image in JPEG format image.save('lena_new.jpg') print("Image saved successfully in JPEG format...")
输出
Image saved successfully in JPEG format...
如果访问保存输出图像的文件夹,您可以观察生成的图像。
广告