php – 如何使用FPDI设置PDF页面的大小
作者:互联网
我被困在工作中.
我用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);
有人有想法吗?
解决方法:
我稍微修改了miken32发给我的代码,现在它工作得很好!
谢谢你的配偶,这是正确的方法.
$pdf = new FPDI('L','mm', array(54,85.6));
$pdf->setSourceFile('inc/om.pdf');
$tplIdx = $pdf->importPage(2);
$pdf->AddPage();
$pdf->useTemplate($tplIdx);
标签:php,fpdf,fpdi 来源: https://codeday.me/bug/20190609/1202040.html