我正在尝试用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);
暂无答案!
目前还没有任何答案,快来回答吧!