我想将纸张尺寸设置为fpdf的一半大小,大约是8.5x5.5 inc。我怎么能这样做? 我在PHP语言中的fpdf函数是
$pdf = new FPDF('P','mm','?????');
有什么解决方案吗?谢谢你的帮助..
答案 0 :(得分:50)
他们在documentation for the FPDF constructor:
中说出来FPDF([string orientation [,string unit [,mixed size]]])
这是类构造函数。它允许设置所有方法中使用的页面大小,方向和度量单位(字体大小除外)。 参数......
<强>大小强>
用于页面的大小。它可以是以下值之一(不区分大小写):
A3 A4 A5 信件 法律
或包含宽度和高度的数组(以单位给出的单位表示)。
他们甚至给出了一个自定义尺寸的例子:
自定义100x150毫米页面尺寸的示例:
$pdf = new FPDF('P','mm',array(100,150));
答案 1 :(得分:-1)
/*$mpdf = new mPDF('', // mode - default ''
'', // format - A4, for example, default ''
0, // font size - default 0
'', // default font family
15, // margin_left
15, // margin right
16, // margin top
16, // margin bottom
9, // margin header
9, // margin footer
'L'); // L - landscape, P - portrait*/