|
|
|
FPDF error: Undefined font: saraban ทำแล้วทำอีก ติดปัญหาตรงนี้ครับ |
|
|
|
|
|
|
|
FPDF error: Undefined font: saraban
error แบบนี้ ควรแก้อย่างไรดี ครับ
Code (PHP)
<html>
<head>
</head>
<body>
<?php
define('FPDF_FONTPATH','fpdf/font/');
require('fpdf/fpdf.php');
class PDF extends FPDF
{
//Load data
function LoadData($file)
{
//Read file lines
$lines=file($file);
$data=array();
foreach($lines as $line)
$data[]=explode(';',chop($line));
return $data;
}
//Simple table
function BasicTable($header,$data)
{
//Header
$w=array(100,30);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
//Data
foreach ($data as $eachResult)
{
$this->Cell(100,6,$eachResult["Detail"],1);
$this->Cell(30,6,$eachResult["Badget"],1);
$this->Ln();
}
}
//Better table
function ImprovedTable($header,$data)
{
//Column widths
$w=array(100,30);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
//Data
foreach ($data as $eachResult)
{
$this->Cell(100,6,$eachResult["Detail"],1);
$this->Cell(30,6,$eachResult["Badget"],1);
$this->Ln();
}
//Closure line
$this->Cell(array_sum($w),0,'','T');
}
//Colored table
function FancyTable($header,$data)
{
//Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Header
$w=array(100,30);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
//Color and font restoration
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
//Data
$fill=false;
foreach($data as $row)
{
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Column titles
$header=array('Deatil','Badget');
//Data loading
//*** Load MySQL Data ***//
include ("config.php");
$strSQL = "SELECT * FROM tb_payment";
$objQuery = mysql_query($strSQL);
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
$result = mysql_fetch_array($objQuery);
array_push($resultData,$result);
}
//************************//
//$pdf->SetFont('Arial','',10);
$pdf->AddFont('saraban','B','saraban.php');
$pdf->SetFont('saraban','',36);
$pdf->Cell(0,20,iconv( 'UTF-8','TIS-620','สวัสดี ชาวไทยครีเอท'),0,1,"C");
//*** Table 1 ***//
$pdf->AddPage();
$pdf->Image('img/su57.JPG',80,8,33);
$pdf->Cell(0,5,"ใบกำกับภาษี / ใบเสร็จรับเงิน [สำหรับลูกค้า]",0,1,'C');
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);
//*** Table 2 ***//
$pdf->AddPage();
$pdf->Image('img/su57.JPG',80,8,33);
$pdf->Ln(35);
$pdf->ImprovedTable($header,$resultData);
//*** Table 3 ***//
$pdf->AddPage();
$pdf->Image('img/su57.JPG',80,8,33);
$pdf->Ln(35);
$pdf->FancyTable($header,$resultData);
$pdf->Output("Bill_payment/1.pdf","F");
?>
PDF Created Click <a href="Bill_payment/1.pdf">here</a> to Download
</body>
</html>
Tag : PHP, HTML/CSS, Report Others
|
|
|
|
|
|
Date :
2014-04-10 04:00:21 |
By :
san.saleah |
View :
2068 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรทัดที่ 114 อ้างอิงไฟล์ font ไม่ถูกรึเปล่าครับ เห็นเป็น saraban.php แค่นั้น
อาจจะ define ค่าผิดตั้งแต่ บรรทัด 007
|
|
|
|
|
Date :
2014-04-10 09:19:47 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไฟล์ฟอนต์ มีครับ ชื่อไฟล์ชื่อ นั้น ผมเปลี่ยนชื่อให้มันสั้นลงครับ
|
|
|
|
|
Date :
2014-04-10 10:01:39 |
By :
san.saleah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้เลย ครับพี่ๆ ช่วยทีครับ
|
|
|
|
|
Date :
2014-04-10 19:15:40 |
By :
san.saleah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|