|
|
|
รบกวนเรื่องออกรายงานเป้น PDF หน่อยครับเกี่ยวกับ ฟ้อน มันแจ้งว่าหาไม่เจอ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
</head>
<body>
<?php
require('fpdf.php');
define('FPDF_FONTPATH','font/');
class PDF extends FPDF
{
function Header(){
$this->Image('auction.jpg',10,15,40,30);
$this->AddFont('lily','','lily.php');
$this->SetFont('lily','B',20);
$this->Text(50,20,'ประมูลสินค้าออนไลน์');
$this->SetFont('lily','B',28);
$this->Text(50,30,'www.e-auction');
$this->SetFont('lily','B',36);
$this->Text(50,40,'รายงานแสดงสินค้าทั้งหมด');
$this->Ln(1);
}
//Load data
function LoadData($file)
{
//Read file lines
$lines=file($file);
$data=array();
foreach($lines as $line)
$data[]=explode(';',chop($line));
return $data;
}
//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(10,55,20,28,28,50);
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('Arial');
for($s=1; $s<1; $s++)
//Data
$fill=false;
foreach($data as $row)
{
$this->Cell($w[0],6,$s++,'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'L',$fill);
$this->Cell($w[4],6,$row[4],'LR',0,'L',$fill);
$this->Cell($w[5],6,$row[5],'LR',0,'L',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Column titles
$header=array('ลำดับ','ชื่อสินค้า','ราคาสินค้า','เวลาเปิดประมูล','เวลาปิดประมูล','ประเภทสินค้า');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("e-auction");
$sql="SET NAMES TIS620";
mysql_query($sql);
$strSQL = "SELECT product.product_id,product.name,product.price,product.start_time,product.end_time,category.category_name,product.pic,product.status from product ,category WHERE category.category=product.category ";
$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','',8);
$pdf->AddFont('angsa','','angsa.php');
$pdf->SetFont('angsa','',12);
$pdf->Cell(0,20,iconv( 'TIS-620','UTF8',''),0,1,"C");
//*** Table 3 ***//
//$pdf->SetMargins( 5,5,5 );
$pdf->AddPage();
//$pdf->Image('logo.png',10,8,33);
$pdf->Ln(35);
$pdf->FancyTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
พอรัน มันแจ้งแบบนี้ครับ ทั้งๆที่ในโฟล์เดอร์มันก็มีอยู่แนะนำหน่อย
Code
FPDF error: Undefined font: lily B
Tag : PHP
|
|
|
|
|
|
Date :
2012-09-05 22:15:08 |
By :
showroom |
View :
1083 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองตรวจสอบตัวอื่น ๆ ด้วยครับ เพราะจาก Error มันก็แจ้งไว้แบบนั้นครับ
|
|
|
|
|
Date :
2012-09-08 07:06:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|