📜  打开 tiff 图像 pyt - Python (1)

📅  最后修改于: 2023-12-03 14:54:31.729000             🧑  作者: Mango

打开 tiff 图像 pyt - Python

简介

在Python中,使用Pillow库(Python Imaging Library的一个分支)可以打开和操作多种类型的图像文件,包括tiff图像。

安装

安装Pillow库:

pip install pillow
代码示例
from PIL import Image

# 打开tiff图像
image = Image.open('/path/to/tiff/file.tif')

# 显示图像
image.show()

# 获取图像大小
width, height = image.size
print(f'The size of the image is {width}x{height}')

# 保存图像
image.save('/path/to/save/file.png')
解释
  • 使用Image.open()函数打开tiff图像,并将返回的Image对象存储在image变量中。
  • 使用image.show()函数显示图像。这个函数将打开操作系统默认的图像查看器,并显示图像。
  • 使用image.size属性获取图像大小,返回一个元组(width, height),其中widthheight分别是图像的宽度和高度。
  • 使用image.save()函数将图像保存为png格式。可以将第一个参数指定为要保存的文件路径和名称。
结论

使用Pillow库可以在Python中轻松打开tiff图像,并进行多种操作。除了tiff格式,Pillow还支持JPEG、PNG、BMP、GIF等多种图像格式。