我是新来的,首先很抱歉我的英语不好。这是我的问题:我使用 FPDF 生成了一个 PDF 文档(生成的文档是正确的,我检查了两次)并使用 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 厘米。
感谢重播
编辑:我发现我的客户只会在 9 月返回,因为我只能“在现场”托盘,我现在无法测试任何解决方案。无论如何,我很感激一些帮助。