で生成されたpdf
ファイルの向きをどのように変更できますか。私は、次のようにPHPでそれを呼び出す: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での私の全体のページが含まれており、これは一時的なファイルを開きます。
これにより、縦向きの.pdf
が生成されます。 wkhtlktopdfにはオリエンテーションを変更するオプション-O landscape
がありますが、私はPHPスクリプトでこれをどこでどのように書くことができるのか分かりません。私はWindows 7を使用しています。
wkhtmltopdfコマンドの直後に '-O landscape'という2つのフラグを渡します。例えば、' wkhtmltopdf -O landscape foobar.html foobar.pdf' –