有没有办法在 jpanel 中渲染 pdf 文件?
实际上我使用 PDFRenderer 库,我可以在 JFrame 中显示 pdf,但我想要的是将 pdf 的内容存储在 jpanel 中以便稍后显示。
提前致谢。
actually i m using the library PDFRenderer, i can display the pdf in a JFrame but what i want is to store the content of the pdf in a jpanel to display it later.
thanx in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ICEpdf 是一个用于处理 PDF 文件的开源 Java 库。它具有可用于生成包含 PDF 文件的 JPanel 的类。
ICEpdf is an open source Java library for working with PDF files. It has classes which can be used to produce a JPanel containing a PDF file.
还有 JPedal 和 Multivalent。 PDF 是一组复杂的绘制命令,因此您需要将其转换为图像,或者在想要显示它时解析并绘制它。
There is also JPedal and Multivalent. A PDF is a complex set of draw commands so you either need to convert it to an image or parse and draw it when you want to display it.