How to display Arabic data in FPDF?
问题 I am using PHP and FPDF to generate a PDF. My problem is, the data is not displaying in Arabic. How to show Arabic data in content of PDF? Here is my code: require('include/fpdf/fpdf.php'); class PDF extends FPDF { // Page header function Header() { $this->Image('include/fpdf/tutorial/logo.png',10,6,30);// Logo $this->SetFont('Arial','B',15);// Arial bold 15 $this->Cell(80);// Move to the right $this->Cell(30,10,'العنوان',1,0,'C');// Title $this->Ln(20);// Line break } // Page footer function