test.php 1.1 KB
<?php 
require('Chinese.class.php'); 

class PDF extends PDF_Chinese 
{ 

function Header() //����ҳü 
{ 
$this->SetFont('GB','',10); 
$this->Write(10,'�����¼'); 
$this->Ln(20); //���� 
} 
function Footer() //����ҳ�� 
{ 
$this->SetY(-15); 
$this->SetFont('GB','',10); 
$this->Cell(0,10,'��'.$this->PageNo().'ҳ'); 
} 

} 
$pdf=new PDF(); //�����µ�FPDF���� 
$pdf->AddGBFont(); //������������ 
$pdf->Open(); //��ʼ����PDF 
$pdf->AddPage(); //���һҳ 
$pdf->SetTextColor(0,0,255);
$pdf->Write(5, '����write++++ageibiejijij', '');
//$pdf->Cell(0,6,'��һ�����ݰ�',1);
$pdf->Ln(); 
//$pdf->Cell(0,6,'�ڶ������ݰ�',1);
$pdf->Write(5, '������ö���Ƚϳ��õ����壬�������IJ�֧�֡�Ҫ֧�����Ļ�֧�ֱȽ�ƫ������Ҫ�õ�AddFont()�������Ҳ�����ʱûͨ��ϣ����λͨ��Ŀ���ָ��һ', '');



$pdf->Output("�����¼.pdf", true); //����PDF�ļ� 
?>