本文整理汇总了PHP中PDF_AutoPrint::SetFontSize方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF_AutoPrint::SetFontSize方法的具体用法?PHP PDF_AutoPrint::SetFontSize怎么用?PHP PDF_AutoPrint::SetFontSize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDF_AutoPrint
的用法示例。
在下文中一共展示了PDF_AutoPrint::SetFontSize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
FROM `opcard`
WHERE `hn` LIKE :hn_patient ";
$data = array(':hn_patient' => $cHn);
$db->select($sql, $data);
$item = $db->get_item();
$pdf = new PDF_AutoPrint("P",'mm', "A4");
$pdf->SetThaiFont(); // à«çµ¿Í¹µì
$pdf->SetAutoPageBreak(false, 0);
$pdf->SetMargins(0, 0);
$pdf->SetTopMargin(2);
$pdf->AddPage();
$pdf->SetFont('THSarabun'); // àÃÕ¡ãªé§Ò¹¿Í¹µì·ÕèàµÃÕÂÁäÇé
$pdf->SetFontSize(17);
$pdf->SetXY(185, 7);
$pdf->Cell(10, 6, $item['no_card'],0,1);
$pdf->SetXY(45, 19);
$pdf->Cell(40, 6, $item['hn'],0,1);
$pdf->SetXY(110, 19);
$pdf->Cell(100, 6, $item['yot'].' '.$item['name'].' '.$item['surname'],0,1);
$pdf->SetXY(45, 27);
$pdf->Cell(0, 6, "Ç/´/» à¡Ô´: ".$item['dbirth']." ID: ".$item['idcard']." ÊÔ·¸Ô: ".$item['ptright'],0,1);
$pdf->AutoPrint(true);
$pdf->Output();
示例2: trim
$row_id = trim($_GET['row_id']);
$sql = "SELECT * FROM `booking` WHERE `row_id` ='" . $row_id . "' ";
$query = mysql_query($sql);
$dbarr = mysql_fetch_array($query);
$age = calcage($dbarr['bdate']);
// header('Content-type: application/pdf');
$pdf = new PDF_AutoPrint("P", 'mm', "A4");
$pdf->SetThaiFont();
// �絿��
$pdf->SetAutoPageBreak(false, 0);
$pdf->SetMargins(0, 0);
$pdf->SetTopMargin(2);
$pdf->AddPage();
$pdf->SetFont('THSarabun');
// ���¡��ҹ�������������
$pdf->SetFontSize(17);
$pdf->Cell(0, 4, "�ͧ/Ἱ�/��ǹ �ٹ�������� �͡��������Ţ FR-IPC-001/3 ��䢤��駷�� 00 �ѹ����ռźѧ�Ѻ�� 28 �.�.44", 0, 1, "C");
$pdf->SetFontSize(30);
$pdf->Cell(0, 10, "㺨ͧ��§", 0, 1, "C");
$pdf->SetFontSize(23);
$pdf->Cell(0, 8, "�ç��Һ�Ť�������ѡ�������� �.���ͧ �.�ӻҧ", 0, 1, "C");
$pdf->SetXY(0, 26);
$pdf->Cell(30, 6, "����-ʡ��", 0, 1);
$pdf->SetXY(30, 26);
$pdf->Cell(60, 6, $dbarr['ptname'], 0, 1);
$pdf->SetXY(90, 26);
$pdf->Cell(40, 6, "����", 0, 1);
$pdf->SetXY(130, 26);
$pdf->Cell(80, 6, $age, 0, 1);
$pdf->SetXY(0, 34);
$pdf->Cell(30, 6, "HN", 0, 1);