使用 dompdf 我生成 pdf 文件。我成功生成它。但是当我在 Foxit 阅读器中打开它时生成它之后,它在 51.79% 模式下打开的尺寸非常小。当我选择“适合宽度”或 125% 时,它会正确显示。当我默认打开 pdf 时,它可以打开 125% 模式吗?
我使用了以下功能:
function pdf_create($html, $filename)
{
ini_set("memory_limit", "50M");
//define pdf store path
$invoice_pdf_path = ABSOLUTE_PATH;
require_once("dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper("a4", "portrait");
$dompdf->render();
//$dompdf->stream("abc_out.pdf");
$pdf = $dompdf->output();
@file_put_contents($invoice_pdf_path . $filename . ".pdf", $pdf);
}