多页TIFF中有多少页?

时间:2017-07-21 07:02:12

标签: python python-imaging-library tiff

在python中,如何计算多页TIFF中的页数/帧数?

1 个答案:

答案 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