本文整理匯總了PHP中PDF_AutoPrint::Rect方法的典型用法代碼示例。如果您正苦於以下問題:PHP PDF_AutoPrint::Rect方法的具體用法?PHP PDF_AutoPrint::Rect怎麽用?PHP PDF_AutoPrint::Rect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PDF_AutoPrint
的用法示例。
在下文中一共展示了PDF_AutoPrint::Rect方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
// ����� column �����ͨ����� X ������
$x1 = 93;
$x2 = 143;
$x3 = 153;
$x4 = 163;
$x5 = 172;
}
if (isset($full_items[$i])) {
++$item_i;
$item = $full_items[$i];
$pdf->SetXY($x1, $y_start);
$pdf->Cell(50, $line_height, $item['tradename'], 1, 1, 'L');
$pdf->SetXY($x2, $y_start);
$pdf->Cell(10, $line_height, $item['num'], 1, 1, 'R');
} else {
$pdf->Rect($x1, $y_start, 50, $line_height);
//��¡��
$pdf->Rect($x2, $y_start, 10, $line_height);
//�ӹǹ�ԡ
}
// �����ͧ��ҹ��Ңͧ���� column �繤����ҧ
$pdf->Rect($x3, $y_start, 10, $line_height);
//���¨�ԧ
$pdf->Rect($x4, $y_start, 9, $line_height);
//���Թ(�ҷ)
$pdf->Rect($x5, $y_start, 6, $line_height);
//���Թ(ʵ.)
$y_start += 7.5;
// ����ͤú 34 ��(����+���) �����������
if ($row_i === 34) {
$row_i = 0;