使用 wkhtmltopdf 设置横向
2022-08-30 19:08:12
如何更改使用 生成的文件的方向。我在PHP中调用它,如下所示:pdf
Wkhtmltopdf
$file = fopen("tmp/html/pdfTmp_$numRand.html",
"w") or exit("Unable to open file!");
fwrite($file, $html);
fclose($file);
exec("..\library\wkhtmltopdf\wkhtmltopdf " .
"tmp/html/pdfTmp_$numRand.html tmp/pdf/pdfTmp_$numRand.pdf");
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header("Content-Disposition: attachment; filename=".$nom."_".$residence.".pdf");
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize("tmp/pdf/pdfTmp_$numRand.pdf"));
ob_clean();
flush();
readfile("tmp/pdf/pdfTmp_$numRand.pdf");
$html
在html中包含我的整个页面,这将打开一个临时文件。
这将生成一个纵向。我知道wkhtlktopdf可以选择改变方向,但我不知道在哪里以及如何在我的PHP脚本中写这个。我使用的是 Windows 7。.pdf
-O landscape