当前位置: 首页 > 工具软件 > Python24 > 使用案例 >

将tif文件转化为png文件 Python3

颛孙飞鸾
2023-12-01

from libtiff import TIFF
import cv2

tif = TIFF.open('result.tif', mode='r')
img = tif.read_image()  

cv2.imwrite('./target.png', img)
 类似资料: