我正在使用html2pdf从HTML代码创建pdf。它使用html2canvas和jsPDF。结果非常好,但与原始结果略有不同:字体大小和行高略有不同,因此页面末尾不正确。如果div(具有固定的外观,可以在A4页面上正确呈现),我真的需要一个副本。
有没有办法影响最终渲染中的字体?我现在制作pdf的方式是:
savePdf () {
this.pdfDialog = true
let opt = {
// if set firefox will not be able to print as pdf!...
// margin: 0,
filename: 'cv.pdf',
enableLinks: true,
image: { type: 'jpeg', quality: 0.98 },
html2canvas: {
scale: 8,
useCORS: true,
width: 310,
letterRendering: true,
},
jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' },
}
html2pdf().set(opt).from(document.getElementById('printable-cv')).save()]
},
答案 0 :(得分:0)
解决方案是向元素添加内联样式。就我而言,在vuejs中工作,我得到了以下代码:
<div class="presentazione" v-html="presentation" :style="presentationFont"></div>