我被困在工作中。 我用PHP编码,我必须生成PDF。我的问题是我必须创建卡(相同尺寸的信用卡85.6 * 54mm),我使用的是正确尺寸的模板,但页面仍然是用A4格式生成的。我可以在左上角的那个页面上看到我的模板,但是A4页面正在填充我的屏幕的其余部分。 这是我的代码。
$pdf = new FPDI();
$pdf->setSourceFile('inc/om.pdf');
$tplIdx = $pdf->importPage(2);
$pdf->AddPage('L', array(85.6,54));
$pdf->useTemplate($tplIdx);
有人有想法吗?
答案 0 :(得分:5)
我稍微修改了miken32发给我的代码,现在它运行得很好! 谢谢你的配偶,这是正确的做法。
$pdf = new FPDI('L','mm', array(54,85.6));
$pdf->setSourceFile('inc/om.pdf');
$tplIdx = $pdf->importPage(2);
$pdf->AddPage();
$pdf->useTemplate($tplIdx);