动态jasper报告标题图片
我正在创建动态碧玉报告。事情看起来不错。如何将动态标题图像添加到生成的报告中?
我正在使用
FastReportBuilder fr = new FastReportBuilder();
Style headerStyle = new Style();
headerStyle.setBackgroundColor(Color.BLUE);
headerStyle.setPadding(5);
fr.setTitle("Title")
.setSubtitle("Sub title")
.setPrintBackgroundOnOddRows(true)
.setUseFullPageWidth(true)
.setPageSizeAndOrientation(Page.Page_A4_Landscape())
.setTitleHeight(100)
.setTitleStyle(headerStyle);
但它不起作用。 报告将以 pdf、csv 和 html 格式导出。
I am creating dynamic jasper reports. Things are looking fine. How do I add a dynamic header image to the generated reports?
I am using
FastReportBuilder fr = new FastReportBuilder();
Style headerStyle = new Style();
headerStyle.setBackgroundColor(Color.BLUE);
headerStyle.setPadding(5);
fr.setTitle("Title")
.setSubtitle("Sub title")
.setPrintBackgroundOnOddRows(true)
.setUseFullPageWidth(true)
.setPageSizeAndOrientation(Page.Page_A4_Landscape())
.setTitleHeight(100)
.setTitleStyle(headerStyle);
But its not working.
Reports will be exported in pdf, csv, and html formats.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我有用
It works for me