รบกวนผู้ใช้งานการแปลงไฟล์ PDF (FPDF) ผู้รู้ช่วยทีครับ
จากรูปจะ สังเกต ได้ ว่า ชื่อเรื่องอะไรพวกนี้มันยาวเกิน แต่มันไม่ขึ้นบรรทัดใหม่ ผมลอง เปลี่ยนตรง แสดงผม จาก เซล์ เป็นมัลติเซล แล้วก็ไม่ขึ้นครับ
นี้โคดผม
<?php
require('CHECKALL.php'); //1
require('CHECKTF.php');//4
require_once('lib/FPDI/fpdf.php'); // include contoler gen pdf
require('lib/fpdi/fpdi.php'); // includew contoler gen pdf
class PDF extends FPDF
{
function Footer()
{
// Go to 1.5 cm from bottom
$this->SetY(-15);
// Print centered page number
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}
}
$name = $_SESSION['User_Loginnew']['user_name'];
$ssql = "Report";
$datelog = date("Y-m-d");
$timelog =date("H:i:s");
$filelog = 'genpdf from'.$te1.'to'.$te2;
$pc="INSERT INTO logdb(log_name,log_date,log_time,log_file,log_act) VALUES ('$name','$datelog','$timelog','$filelog','$ssql')";
$precon = mysql_query($pc);
$datestart = date('Y-m-d', strtotime($_POST['te1']));
$dateend = date('Y-m-d', strtotime($_POST['te2']));
if($_POST["rad1"] == 'rad1')
{ $sql="select * from document left join doctype on document.doc_type = doctype.type_id WHERE doc_date between '$datestart' and '$dateend' and doc_status = 'normally' "; }
else
{ $sql="select * from document left join doctype on document.doc_type = doctype.type_id WHERE doc_receive_date between '$datestart' and '$dateend' doc_status = 'normally' "; }
$result=mysql_query($sql);
$num_rows=mysql_num_rows($result);
$filename =$_SERVER['DOCUMENT_ROOT'].'//document//report//doc.pdf';
$pdf=new PDF(L);
/*$page=new PDF();
$page->AliasNbPages( 'tp' );*/
$pdf->SetLeftMargin(18);
$pdf->SetRightMargin(18);
$pdf->AddFont('angsab','B','angsab.php');
$pdf->AddFont('angsa','','angsa.php');
$pdf->SetFont('angsa','',14);
$pdf->AddPage();
/*
// import the template PFD
$pdf->setSourceFile($filename);
// select the first page
$tplIdx = $pdf->importPage(1);
// use the page we imported
$pdf->useTemplate($tplIdx);
*/
$dat = 'พิมพ์วันที่ '.date("d/m/Y");
$search = 'จากวันที่ '.$te1.' ถึงวันที่ '.$te2;
$pdf->SetFont('angsa','',30);
$pdf->Cell( 0 , 5 , iconv( 'UTF-8','cp874' , 'รายงานการสรุปเอกสาร' ) , 0 , 1 , C );
$pdf->SetFont('angsa','',20);
$pdf->Ln(5);
$pdf->Cell( 0 , 5 ,iconv( 'UTF-8','cp874' , $search) , 0 , 0 , C );
$pdf->Cell( 0 , 5 , iconv( 'UTF-8','cp874' , $dat ) , 0 , 1 , R );
$pdf->Multicell(0,2,"\n\n");
$pdf->SetFont('angsa','',15);
$pdf->Cell( 30 , 10 , iconv( 'UTF-8','cp874' , 'หมายเลข' ) , 1 , 0 , C); //แกน y/แกน x/output/กรอบ/เว้นบรรทัด
$pdf->Cell( 70 , 10 , iconv( 'UTF-8','cp874' , 'เรื่อง' ) , 1 , 0 , C);
$pdf->Cell( 20 , 10 , iconv( 'UTF-8','cp874' , 'วันที่ีเอกสาร' ) , 1 , 0 , C);
$pdf->Cell( 35 , 10 , iconv( 'UTF-8','cp874' , 'ประเภท' ) , 1 , 0 , C);
$pdf->Cell( 20 , 10 , iconv( 'UTF-8','cp874' , 'วันที่ได้รับมา' ) , 1 ,0 ,C);
$pdf->Cell( 85 , 10 , iconv( 'UTF-8','cp874' , 'หมายเหตุ' ) , 1 , 1 , C);
$i = 0;
while ($i<$num_rows)
{
$objResult1 = mysql_fetch_array($result);
$idn = $objResult1[doc_num];
$dateinbill = date('d-m-Y', strtotime($objResult1[doc_date]));
$about = $objResult1[doc_about];
$type = $objResult1[type_name];
$rdate = date('d-m-Y', strtotime($objResult1[doc_receive_date]));
$file = $objResult1[doc_file];
$remark = $objResult1[doc_remark];
$pdf->Cell( 30 , 8 , iconv( 'UTF-8','cp874' , $idn ) , 1 , 0 , C);
$pdf->Cell( 70 , 8 , iconv( 'UTF-8','cp874' , $about ) , 1 , 0 , C);
$pdf->Cell( 20 , 8 , iconv( 'UTF-8','cp874' , $dateinbill ) , 1 , 0 , C);
$pdf->Cell( 35 , 8 , iconv( 'UTF-8','cp874' , $type ) , 1 , 0 , C);
$pdf->Cell( 20 , 8 , iconv( 'UTF-8','cp874' , $rdate ) , 1 , 0 , C);
$pdf->Cell( 85 , 8 , iconv( 'UTF-8','cp874' , $remark ) , 1 , 1 , C);
$i++;
}
$pdf->Ln(5);
$pdf->SetFont('angsa','',20);
$pdf->Cell( 0 , 5 , iconv( 'UTF-8','cp874' , 'รายงานการสรุปเอกสาร ' ).$i.iconv( 'UTF-8','cp874' , ' รายการ' ) , 0 , 1 , R );
$pdf->output();
?>
ผมควรต้องแก้ตรงใหนบ้างครับTag : PHP, MySQL
Date :
2014-09-08 09:58:09
By :
summawat
View :
1999
Reply :
2
ผมลองเปลี่ยนโคด แล้ว
$pdf->multicell( 70 , 8 , iconv( 'UTF-8','cp874' , $about ) ,1, C);
ออกมาได้แบบนี้ คืออยากให้ออมมาเป็นตรางสวยๆ อะครับ
Date :
2014-09-08 10:50:05
By :
summawat
สวัสดีครับ K. leong
ผมใช้ TCPDF ครับ เนื่องจากสามารถเขียน Content แบบ HTML ได้สะดวกมากๆ
สามารถศึกษาได้ที่เว็บ TCPDF (http://www.tcpdf.org ) ได้โดยตรง
ดาวน์โหลด lib ได้ที่หน้าดาวน์โหลดของเว็บ ปัจจุบัน v. tcpdf_6_0_093.zip (16.7 MB)
ในไฟล์ดาวน์โหลดจะมี examples อยู่ด้วย สามารถนำไปรันได้เลย โดยในเคสนี้แนะนำให้ดู example_061.php ครับ
หากมีอะไรสงสัยสามารถติดต่อผมได้ครับ
ประวัติการแก้ไข 2014-09-08 11:41:31 2014-09-08 11:43:49
Date :
2014-09-08 11:40:33
By :
Mx0
Load balance : Server 01