在python中,如何计算多页TIFF中的页数/帧数?
答案 0 :(得分:0)
枕头,PIL的分支,应该适用于TIFF(http://pillow.readthedocs.io/en/3.1.x/handbook/image-file-formats.html#tiff)
实现目标的方法是打印特定变量from PIL import Image
try:
img = Image.open('multipage_tiff_example.tif')
img.load()
print(img.n_frames)
except:
print("Unable to load image")
:
baseValue