使用 wkhtmltopdf 设置横向

2022-08-30 19:08:12

如何更改使用 生成的文件的方向。我在PHP中调用它,如下所示:pdfWkhtmltopdf

$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


答案 1

选项将解决问题。-O landscape

只是追逐

exec("..\library\wkhtmltopdf\wkhtmltopdf tmp/html/pdfTmp_$numRand.html tmp/pdf/pdfTmp_$numRand.pdf");

到类似的东西

exec("..\library\wkhtmltopdf\wkhtmltopdf -O landscape tmp/html/pdfTmp_$numRand.html tmp/pdf/pdfTmp_$numRand.pdf");

答案 2

我认为这在这里也值得一提:

我也遇到了麻烦,但我设置了 --方向“横向”,并且还设置了 --页面高度 '210mm' 和 --页面宽度 '297mm'

我的pdf不断出现在肖像中,非常令人沮丧。

我太露骨了。删除页面高度和页面宽度选项为我解决了这个问题


推荐