在 Android 中使用 iText 读取或打开 PDF 文件
我是 Android 应用程序开发新手。 使用 iText 我完成了 PDF 创建并在创建的文件上写入 现在我想阅读该 PDF 文件。 如何使用 iText 打开或阅读 PDF 文件。
例子将是可观的..
然后提前......!!!
哪个是渲染 PDF 文件的最佳库..???? JPedal / iText / gnujpdf 或任何其他......??????
i am new to android application development.
using iText i had done the PDF creation n write on that created file
now i want to read that PDF file.
how to open or read a PDF file using iText.
Examples will be appreciable..
thenx in advance.....!!!
which is the best library to render the PDF file..????
JPedal / iText / gnujpdf or anyother.....?????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,iText仅用于PDF创建,它不包含查看器部分。所以,你需要选择另一个库。您可以按照 Azharahmed 提供的链接找到一些有用的库。
Actually, iText is only for PDF creation, it doesn't contains viewer part. So, you need to choose some another library. You can follow the link provided by Azharahmed to find some useful libraries.
您可以使用 iText 创建您自己的 PDF 查看器,您可以获取特定页面的图像并简单地在滚动视图中显示该图像。
但要使用这种方法,您必须实现高效的缓存并设置将在初始运行时逐步设置的特定页面阈值。
这是链接,可以方便您:
您也可以使用此链接作为参考:
使用 iText 库阅读 pdf 文件
我希望这有帮助。
You can create your own PDF Viewer using iText, you can fetch Images for the specific page and simply display that image in a Scroll View.
But for using this approach, you will have to implement an efficient cache and set the specific pages threshold that will be made on initial run and progressively.
Here is the link, that will facilitate you:
You can also use this link as a reference:
Reading a pdf file using iText library
I hope this helps.