 |
|
การใช้ FPDF กับ Codeigniter
1. Download FPDF Version ล่าสุด http://fpdf.org
2. copy FPDF.php ไปวางที่่ libraries
3. สร้าง Folder ที่ Codeigniter ชื่อ fonts
Copy fonts ทั้งหลายเอามาวางที่นี่
4. Create new File
ตั้งชื่อ pdf.php
Code (PHP)
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require('fpdf.php');
class MY_pdf extends FPDF
{
function __construct($orientation='P', $unit='mm', $size='A4')
{
parent::__construct($orientation,$unit,$size);
}
}
?>
ที่ Controllers :: pdf.php
Code (PHP)
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class pdf extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->library('pdf'); //
$this->pdf->fontpath = 'fonts/'; // Create folder fonts at Codeigniter
}
public function index()
{
echo anchor(base_url('pdf/test'), 'Generate PDF');
}
public function test()
{
$this->pdf->AddPage();
$this->pdf->AddFont('angsa','','angsa.php');
$this->pdf->AddFont('angsa','B','angsab.php');
$this->pdf->AddFont('angsa','I','angsai.php');
$this->pdf->AddFont('angsa','U','angsaz.php');
$this->pdf->SetFont('angsa','',36);
$this->pdf->Cell(0,20,iconv( 'UTF-8','TIS-620','สวัสดี ชาวโลก2'),0,1,"C");
$this->pdf->Output("MyPDF/test.pdf","F");
$this->load->helper('download');
$data = file_get_contents("MyPDF/test.pdf");
$name = "MyPDF/test.pdf";
force_download($name, $data);
//echo anchor('MyPDF/test.pdf', 'Download');
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */


ช่วงนี้ขอแว๊ป ทำงานของตัวเองให้เสร็จก่อนนะครับ
ติดทำโปรเจ็ค เครื่องชั่ง Digital + ตัดสต็อก, Planning, Production
คงจะนานเลยครับท่าน
Tag : PHP, CodeIgniter Framework
|
|
 |
 |
 |
 |
Date :
2014-07-24 21:50:13 |
By :
fossil31 |
View :
7244 |
Reply :
5 |
|
 |
 |
 |
 |
|
|
|
 |