JasperReports html 导出
我在 JasperReports 中开发了一个报告,当导出为 PDF 时,它看起来很好,但是当我将相同的报告导出为 HTML 时,它的大小显得较小。有谁知道如何设置参数才能在 PDF 和 PDF 中正确显示吗? HTML。还可以将 pageWidth 高度等指定为百分比
I have developed a report in JasperReports, it appears fine when exported as PDF, but when I export same report as HTML it appears smaller in size. Does anyone have any idea, how is it possible to set the parameters so that it displays properly in PDF & HTML. Also is it possible to specify the pageWidth height etc. as percentages
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看html的源码,你可能会发现字体单位是px,而PDF使用的字体单位是pt,这就是为什么html字体比pdf小。所以你可能需要下面的代码来将html字体单位设置为pt。
Look at the source of html, you may find the font unit is px, however PDF is using the font unit pt, that's why the html font is smaller than pdf. So you may need the following code to set the html font unit to pt.