我按照https://developers.itextpdf.com/fr/node/2085中的规定向iText提供了css和字体:为此我在目录上安装了arial.ttf。我还提供了一个CSS,我说Arial是所有
的官方字体h1 {
font-family: Arial;
font-size: 24px;
font-style: bold;
font-variant: normal;
font-weight: 500;
line-height: 26.4px;
}
h2 {
font-family: Arial;
font-size: 20px;
font-style: bold;
font-variant: normal;
font-weight: 500;
line-height: 22.4px;
}
h3 {
font-family: Arial;
font-size: 14px;
font-style: bold;
font-variant: normal;
font-weight: 500;
line-height: 15.4px;
}
body {
font-family: Arial;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 400;
line-height: 20px;
}
p {
font-family: Arial;
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: 400;
line-height: 20px;
}
但我的服务器花了2分钟从一个简单的html页面创建一个pdf。还有其他建议吗?