使用java计算tif图像文件的页数

发布于 2024-10-07 19:42:53 字数 46 浏览 6 评论 0原文

如何计算 tiff 文件的页数?我将其作为字节数组获取,

谢谢

How can i count the number of pages in tiff file? i get it as byte array

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

单身狗的梦 2024-10-14 19:42:53

你可以看看 iText。 iText 为您提供了一个名为 TiffImage 的类。

TiffImage.getNumberOfPages(new RandomAccessFileOrArray(/* your file, input stream or byte array */));

You could have a look at iText. iText provides you a class called TiffImage.

TiffImage.getNumberOfPages(new RandomAccessFileOrArray(/* your file, input stream or byte array */));
空宴 2024-10-14 19:42:53

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文