JFreeChart 1.09 渲染 JPG 图表,整个背景为红色(或粉色)
我遇到了这个问题,JFreeChart 1.09 渲染 JPG 图表,整个背景为红色(或粉红色)。我不是直接使用 JFreeChart,而是通过 Seam JSF 标签库、组件:linechart 和 barchart。它们都工作正常,只是渲染的 JPG 图像具有浅红色覆盖层背景。
是这样吗?或者我错过了什么?
非常感谢!
i'm stuck with this problem, JFreeChart 1.09 renders JPG charts with whole background in RED (or pink). I'm using JFreeChart not directly, but over Seam JSF taglibs, the components: linechart and barchart. They both work fine, only that the rendered JPG images have an light-red overlayer background.
Is it correct so? or im missing something?
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
完全相同的问题:JPEG 渲染上的红色/粉色背景。巴布亚新几内亚很好。
我尝试过几个不同版本的 jfreechart 和 jcommon,但没有任何运气。
我最终通过在创建缓冲图像时使用设置为 RGB 的 imageType 参数解决了该问题。
我有这样的代码:
我通过在第一行添加 BufferedImage.TYPE_INT_RGB 参数来解决:
Exact same issue: red/pink background on JPEG rendering. PNG was fine.
I have tried with a few different versions of jfreechart and jcommon without any luck.
I have finally solved the issue by using an imageType parameter set to RGB when creating the buffered image.
I had this code:
I have solved by adding a BufferedImage.TYPE_INT_RGB parameter on the 1st line:
问题是 jfreechart 的 1.09 版本有问题,以及每个 Maven 自动下载的 jcommon-1.012.jar。当我用 Seam 2.2.0.GA 发行版的 JAR 替换它们时,它们工作得很好。现在我可以保存并显示渲染的图像,没有任何问题。
The problem is the buggy version 1.09 of jfreechart, together with jcommon-1.012.jar automatica downloaded per Maven. As fas as i replaced them with the JAR from Seam 2.2.0.GA distribution, they worked fine. And now i can save ans show the rendered images without any problem.
我认为你必须在 Plot 对象上设置背景颜色,例如:
I think you have to set the background color on your Plot object, something like: