此问题在此处已有答案:
Embed a custom font into PDF created out of HTML(3个答案)
6天前关闭
我正在使用openhtmltopdf库将HTML转换为PDF,但转换后的PDF使用“#”而不是“#",”#“,"#,
Java代码:
ByteArrayOutputStream renderedPdfBytes = new ByteArrayOutputStream();
PdfRendererBuilder builder = new PdfRendererBuilder();
builder.withHtmlContent(htmlContent, "/");
builder.toStream(renderedPdfBytes);
builder.run();
renderedPdfBytes.close();
byte[] renderedPdf = renderedPdfBytes.toByteArray();
try (FileOutputStream fos = new FileOutputStream(pdfFile)) {
fos.write(renderedPdf);
}
字符串
Html内容:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<body>
<span class="close-icon close"></span>
<div class="modal-content">
<div class="modal-header"><h2>İade Prosedürü 27.09.2023</h2></div>
<div class="modal-body" style="margin-bottom: 50px;"><p>İade edilmek istenen.</p></div>
</div>
</body>
</html>
型
HTML视图:
的数据
转换后的PDF视图:
的
1条答案
按热度按时间kgqe7b3p1#
如果您遇到在使用openhtmltopdf库生成的PDF中无法正确显示字符的问题,则可能与字体嵌入或字体支持有关。您可以修改代码以包含具有适当字符支持的自定义字体。下面是它的示例。
字符串