我正在使用Flying-Saucer将HTML表单转换为PDF,但是PDF输出没有所有格式(已应用CSS和Bootstrap)。它还剪切了页面的侧面。
以HTML呈现的表单如下:
但是PDF显示为:
从上面看,它看起来像是使窗格具有圆角的边缘,但是没有颜色,所以我认为它缺少css。
HTML依赖于外部CSS文件,boostrap css和bootswatch css主题。因此,HTML中的CSS参考是:
<link rel="stylesheet" type="text/css" href="/css/assessment.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/flatly/bootstrap.min.css">
使用飞碟生成PDF的Java是:
@Qualifier("templateEngine")
@Autowired
private TemplateEngine templateEngine;
public void createPdf(String templateName, Map map) throws Exception {
Assert.notNull(templateName, "The templateName can not be null");
Context ctx = new Context();
if (map != null) {
Iterator itMap = map.entrySet().iterator();
while (itMap.hasNext()) {
Map.Entry pair = (Map.Entry) itMap.next();
ctx.setVariable(pair.getKey().toString(), pair.getValue());
}
}
String processedHtml = templateEngine.process(templateName, ctx);
FileOutputStream os = null;
//String fileName = UUID.randomUUID().toString();
String fileName = "Assessment.pdf";
try {
final File outputFile = File.createTempFile(fileName, ".pdf");
os = new FileOutputStream(outputFile);
ITextRenderer renderer = new ITextRenderer();
renderer.getSharedContext().getUserAgentCallback().setBaseURL("/resources/static/css");
renderer.setDocumentFromString(processedHtml);
renderer.layout();
renderer.createPDF(os, false);
renderer.finishPDF();
我不确定此路径是否正确:
renderer.getSharedContext().getUserAgentCallback().setBaseURL("/resources/static/css");
最后,项目结构如下: