JasperReports html 导出

发布于 2024-12-04 16:33:50 字数 142 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拔了角的鹿 2024-12-11 16:33:50

查看html的源码,你可能会发现字体单位是px,而PDF使用的字体单位是pt,这就是为什么html字体比pdf小。所以你可能需要下面的代码来将html字体单位设置为pt。

 exporter.setParameter(JRHtmlExporterParameter.SIZE_UNIT, JRHtmlExporterParameter.SIZE_UNIT_POINT);

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.

 exporter.setParameter(JRHtmlExporterParameter.SIZE_UNIT, JRHtmlExporterParameter.SIZE_UNIT_POINT);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文