2009-09-30 09:18:36 +00:00
|
|
|
<?php
|
|
|
|
//============================================================+
|
|
|
|
// File name : example_010.php
|
|
|
|
// Begin : 2008-03-04
|
2011-04-26 09:07:42 +00:00
|
|
|
// Last Update : 2011-04-26
|
2010-03-28 20:22:54 +00:00
|
|
|
//
|
2009-09-30 09:18:36 +00:00
|
|
|
// Description : Example 010 for TCPDF class
|
|
|
|
// Text on multiple columns
|
2010-03-28 20:22:54 +00:00
|
|
|
//
|
2009-09-30 09:18:36 +00:00
|
|
|
// Author: Nicola Asuni
|
2010-03-28 20:22:54 +00:00
|
|
|
//
|
2009-09-30 09:18:36 +00:00
|
|
|
// (c) Copyright:
|
|
|
|
// Nicola Asuni
|
|
|
|
// Tecnick.com s.r.l.
|
|
|
|
// Via Della Pace, 11
|
|
|
|
// 09044 Quartucciu (CA)
|
|
|
|
// ITALY
|
|
|
|
// www.tecnick.com
|
|
|
|
// info@tecnick.com
|
|
|
|
//============================================================+
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an example PDF TEST document using TCPDF
|
|
|
|
* @package com.tecnick.tcpdf
|
|
|
|
* @abstract TCPDF - Example: Text on multiple columns
|
|
|
|
* @author Nicola Asuni
|
|
|
|
* @since 2008-03-04
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once('../config/lang/eng.php');
|
|
|
|
require_once('../tcpdf.php');
|
|
|
|
|
2010-02-24 09:08:52 +00:00
|
|
|
|
|
|
|
/**
|
2010-03-28 20:22:54 +00:00
|
|
|
* Extend TCPDF to work with multiple columns
|
|
|
|
*/
|
2010-02-24 09:08:52 +00:00
|
|
|
class MC_TCPDF extends TCPDF {
|
2010-03-28 20:22:54 +00:00
|
|
|
|
2010-02-24 09:08:52 +00:00
|
|
|
/**
|
2010-03-28 20:22:54 +00:00
|
|
|
* Print chapter
|
2010-12-16 15:28:54 +00:00
|
|
|
* @param $num (int) chapter number
|
|
|
|
* @param $title (string) chapter title
|
|
|
|
* @param $file (string) name of the file containing the chapter body
|
|
|
|
* @param $mode (boolean) if true the chapter body is in HTML, otherwise in simple text.
|
|
|
|
* @public
|
2010-02-24 09:08:52 +00:00
|
|
|
*/
|
2010-03-28 20:22:54 +00:00
|
|
|
public function PrintChapter($num, $title, $file, $mode=false) {
|
|
|
|
// add a new page
|
|
|
|
$this->AddPage();
|
2011-04-26 09:07:42 +00:00
|
|
|
// disable existing columns
|
|
|
|
$this->resetColumns();
|
2010-03-28 20:22:54 +00:00
|
|
|
// print chapter title
|
|
|
|
$this->ChapterTitle($num, $title);
|
|
|
|
// set columns
|
|
|
|
$this->setEqualColumns(3, 57);
|
|
|
|
// print chapter body
|
|
|
|
$this->ChapterBody($file, $mode);
|
2009-09-30 09:18:36 +00:00
|
|
|
}
|
2010-03-28 20:22:54 +00:00
|
|
|
|
2010-02-24 09:08:52 +00:00
|
|
|
/**
|
|
|
|
* Set chapter title
|
2010-12-16 15:28:54 +00:00
|
|
|
* @param $num (int) chapter number
|
|
|
|
* @param $title (string) chapter title
|
|
|
|
* @public
|
2010-02-24 09:08:52 +00:00
|
|
|
*/
|
|
|
|
public function ChapterTitle($num, $title) {
|
2009-09-30 09:18:36 +00:00
|
|
|
$this->SetFont('helvetica', '', 14);
|
|
|
|
$this->SetFillColor(200, 220, 255);
|
2010-10-18 09:23:52 +00:00
|
|
|
$this->Cell(180, 6, 'Chapter '.$num.' : '.$title, 0, 1, '', 1);
|
2009-09-30 09:18:36 +00:00
|
|
|
$this->Ln(4);
|
|
|
|
}
|
2010-03-28 20:22:54 +00:00
|
|
|
|
2010-02-24 09:08:52 +00:00
|
|
|
/**
|
|
|
|
* Print chapter body
|
2010-12-16 15:28:54 +00:00
|
|
|
* @param $file (string) name of the file containing the chapter body
|
|
|
|
* @param $mode (boolean) if true the chapter body is in HTML, otherwise in simple text.
|
|
|
|
* @public
|
2010-02-24 09:08:52 +00:00
|
|
|
*/
|
|
|
|
public function ChapterBody($file, $mode=false) {
|
2010-03-28 20:22:54 +00:00
|
|
|
$this->selectColumn();
|
2009-09-30 09:18:36 +00:00
|
|
|
// get esternal file content
|
2010-03-28 20:22:54 +00:00
|
|
|
$content = file_get_contents($file, false);
|
2010-02-23 19:41:01 +00:00
|
|
|
// set font
|
2009-09-30 09:18:36 +00:00
|
|
|
$this->SetFont('times', '', 9);
|
2010-03-28 20:22:54 +00:00
|
|
|
$this->SetTextColor(50, 50, 50);
|
|
|
|
// print content
|
2010-02-24 09:08:52 +00:00
|
|
|
if ($mode) {
|
|
|
|
// ------ HTML MODE ------
|
2010-03-28 20:22:54 +00:00
|
|
|
$this->writeHTML($content, true, false, true, false, 'J');
|
2010-02-24 09:08:52 +00:00
|
|
|
} else {
|
|
|
|
// ------ TEXT MODE ------
|
2010-08-11 21:48:36 +00:00
|
|
|
$this->Write(0, $content, '', 0, 'J', true, 0, false, true, 0);
|
2010-02-24 09:08:52 +00:00
|
|
|
}
|
2009-09-30 09:18:36 +00:00
|
|
|
$this->Ln();
|
|
|
|
}
|
2010-03-28 20:22:54 +00:00
|
|
|
} // end of extended class
|
2009-09-30 09:18:36 +00:00
|
|
|
|
2010-02-24 09:08:52 +00:00
|
|
|
// ---------------------------------------------------------
|
|
|
|
// EXAMPLE
|
|
|
|
// ---------------------------------------------------------
|
2009-09-30 09:18:36 +00:00
|
|
|
// create new PDF document
|
2010-02-24 09:08:52 +00:00
|
|
|
$pdf = new MC_TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// set document information
|
|
|
|
$pdf->SetCreator(PDF_CREATOR);
|
|
|
|
$pdf->SetAuthor('Nicola Asuni');
|
|
|
|
$pdf->SetTitle('TCPDF Example 010');
|
|
|
|
$pdf->SetSubject('TCPDF Tutorial');
|
|
|
|
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
|
|
|
|
|
|
|
|
// set default header data
|
2010-05-21 16:47:01 +00:00
|
|
|
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 010', PDF_HEADER_STRING);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// set header and footer fonts
|
|
|
|
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
|
|
|
|
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
|
2009-03-24 18:37:18 +00:00
|
|
|
|
|
|
|
// set default monospaced font
|
|
|
|
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
//set margins
|
|
|
|
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
|
|
|
|
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
|
|
|
|
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
|
|
|
|
|
|
|
|
//set auto page breaks
|
|
|
|
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
|
|
|
|
|
|
|
|
//set image scale factor
|
2010-03-28 20:22:54 +00:00
|
|
|
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
//set some language-dependent strings
|
2010-03-28 20:22:54 +00:00
|
|
|
$pdf->setLanguageArray($l);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------
|
|
|
|
|
2010-05-21 16:47:01 +00:00
|
|
|
// print TEXT
|
|
|
|
$pdf->PrintChapter(1, 'LOREM IPSUM [TEXT]', '../cache/chapter_demo_1.txt', false);
|
2010-02-24 09:08:52 +00:00
|
|
|
|
2010-05-21 16:47:01 +00:00
|
|
|
// print HTML
|
|
|
|
$pdf->PrintChapter(2, 'LOREM IPSUM [HTML]', '../cache/chapter_demo_2.txt', true);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------
|
|
|
|
|
|
|
|
//Close and output PDF document
|
|
|
|
$pdf->Output('example_010.pdf', 'I');
|
|
|
|
|
|
|
|
//============================================================+
|
2010-03-28 20:22:54 +00:00
|
|
|
// END OF FILE
|
2009-09-30 09:18:36 +00:00
|
|
|
//============================================================+
|