Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们使用 mpdf 从 HTML 创建 PDF。我们在创建 PDF 时遇到了一个问题。字体大小在 PDF 中缩放。如果我使用 42,它只会给出 31.4 的大小。
这个问题肯定是由于 //Scale factor define('_MPDFK', (72/23.5));
不要设置导致问题的比例因子。
关于这个主题的任何帮助都将是 appriciate。
尝试使用<h?>标签,它们可以很好地更改字体大小(h1..h6)。要删除粗体,只需添加:
<h?>
<h3 style="font-weight:normal;"> My text </h3>
mPDF 在表格上使用自动调整大小。如果您在 HTML 中使用表格,则需要设置
<table style="overflow: wrap">
在你所有的桌子上。查看 mPDF Manual on Auto-Layout algorithm。