使用java计算tif图像文件的页数
如何计算 tiff 文件的页数?我将其作为字节数组获取,
谢谢
How can i count the number of pages in tiff file? i get it as byte array
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何计算 tiff 文件的页数?我将其作为字节数组获取,
谢谢
How can i count the number of pages in tiff file? i get it as byte array
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
你可以看看 iText。 iText 为您提供了一个名为 TiffImage 的类。
You could have a look at iText. iText provides you a class called TiffImage.
您可以使用 Java 高级成像 API 获取页数。即使用:
ImageDecoder.getNumPages()
有关如何使用它的示例,请参见 此处。
You can get the number of pages using the Java Advanced Imaging API. I.e. Using:
ImageDecoder.getNumPages()
An example of how to use it can be found here.