使用 java 创建 jpeg(或 pdf)图形/图表的可用方法/资源有哪些
我正在寻找使用 JAVA 创建 JPEG(或 PDF)图形/图表的方法。有什么建议吗?
最终我想制作一份 PDF 报告,但我想即使我得到 JPEG 格式的图表,我也可以使用 JPEG 到 PDF 转换器将其变成 PDF。
谢谢。
I'm looking for ways to create JPEG(or PDF) graphs/charts using JAVA. Any suggestions?
Ultimately I want to make a PDF report, but I figured that even if I get the graph in JPEG then I can use a JPEG to PDF converter to make it a PDF.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为此,我们使用 JFreeChart。我不知道还有其他选择,但这对我们很有帮助。
We are using JFreeChart for this. I do not know of other options, but this has served us well.
将 jpeg“转换”为 PDF 并不是最好的主意,因为 JPEG 仍然包含像素。如果可以的话,请制作矢量图,这样看起来会更好,并且生成的 PDF 会更小。
请参阅以下站点:
我更喜欢 JFreeChart,因为我成功使用它很多年了,而且它总是稳定可靠。
It is NOT the best idea to "convert" a jpeg to PDF, because the JPEG still contains of pixels then. If you can, do produce vector charts which will look much nicer and produce a smaller PDF.
See these sites:
I would prefer JFreeChart, since I used it successfully for years, and it always was stable and reliable.
JFreeChart + Docmosis 是生成带有图像的 PDF 的合理组合。
JFreeChart + Docmosis is a reasonable combo for producing PDFs with images.