我是新來的,首先對我的壞英語感到抱歉。 這是我的問題: 我使用FPDF(該rsulting文件是正確的,我檢查兩次)和使用lpr命令發送到網絡打印機生成PDF文檔:HP打印截斷文檔上的lpr
.....
$pdf->Output('stampe/lipari.pdf', 'F');
//specify the pdf I want to print
$file = 'stampe/lipari.pdf';
//Change PrinterName to the name of the printer you set up in CUPS
$cmd = "lpr -Plipari -o landscape -o fit-to-page ";
//append any files you'd like to print to the end of the command
$cmd .= $file.' 2> output';
exec($cmd);
命令返回沒有錯誤和文件被打印但總是被截斷5釐米。 我嘗試了幾個例如打印指定的邊距,但沒有影響結果。 唯一可見的結果是當我打印鏡像文件:鏡像,但在另一邊截斷了5釐米。
感謝重播
編輯:我發現我的客戶將只返回在九月和引起我可以「現場」只托盤我無法測試,現在的任何解決方案。無論如何,我很感激一些幫助。
這是哪個操作系統/發行版? – ewwhite
抱歉,我忘了提及它。是Debian。目前我不能更具體。 – Andrea