pdf转换中java-css不支持的键问题

1u4esq0p  于 2021-06-30  发布在  Java
关注(0)|答案(0)|浏览(360)

我正在尝试用java中的itext创建一个pdf文件。我的html由css bootsrap版本组成 v4.3.1 . 在转换过程中,我遇到了这样的错误 ERROR c.i.s.c.p.s.CssParserStateController - The rule @-webkit-keyframes is unsupported. All selectors in this rule will be ignored. 我正在尝试使用itext进行javahtml到pdf的转换 7.1.9 maven依赖。如何避免这些错误或包含此css标记?。因为它是从引导加载,我不能改变这一点。我的代码:

ConverterProperties props = new ConverterProperties();
props.setMediaDeviceDescription(new MediaDeviceDescription(MediaType.PRINT));
props.setCssApplierFactory(new DefaultCssApplierFactory());
HtmlConverter.convertToPdf("input.html", new FileOutputStream("output.pdf"), props);

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题