2009-09-30 09:18:36 +00:00
|
|
|
<?php
|
|
|
|
//============================================================+
|
|
|
|
// File name : example_019.php
|
|
|
|
// Begin : 2008-03-07
|
2013-05-14 20:28:42 +00:00
|
|
|
// Last Update : 2013-05-14
|
2010-05-21 16:47:01 +00:00
|
|
|
//
|
2009-09-30 09:18:36 +00:00
|
|
|
// Description : Example 019 for TCPDF class
|
|
|
|
// Non unicode with alternative config file
|
2010-05-21 16:47:01 +00:00
|
|
|
//
|
2009-09-30 09:18:36 +00:00
|
|
|
// Author: Nicola Asuni
|
2010-05-21 16:47:01 +00:00
|
|
|
//
|
2009-09-30 09:18:36 +00:00
|
|
|
// (c) Copyright:
|
|
|
|
// Nicola Asuni
|
2011-12-23 17:19:43 +00:00
|
|
|
// Tecnick.com LTD
|
2009-09-30 09:18:36 +00:00
|
|
|
// www.tecnick.com
|
|
|
|
// info@tecnick.com
|
|
|
|
//============================================================+
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an example PDF TEST document using TCPDF
|
|
|
|
* @package com.tecnick.tcpdf
|
|
|
|
* @abstract TCPDF - Example: Non unicode with alternative config file
|
|
|
|
* @author Nicola Asuni
|
|
|
|
* @since 2008-03-04
|
|
|
|
*/
|
|
|
|
|
2013-05-14 20:28:42 +00:00
|
|
|
// Include the main TCPDF library (search for installation path).
|
|
|
|
require_once('tcpdf_include.php');
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// create new PDF document
|
|
|
|
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, false, 'ISO-8859-1', false);
|
|
|
|
|
2010-12-01 16:09:06 +00:00
|
|
|
// Set document information dictionary in unicode mode
|
|
|
|
$pdf->SetDocInfoUnicode(true);
|
|
|
|
|
2009-09-30 09:18:36 +00:00
|
|
|
// set document information
|
|
|
|
$pdf->SetCreator(PDF_CREATOR);
|
2010-12-01 16:09:06 +00:00
|
|
|
$pdf->SetAuthor('Nicola Asuni [€]');
|
2009-09-30 09:18:36 +00:00
|
|
|
$pdf->SetTitle('TCPDF Example 019');
|
|
|
|
$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.' 019', 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
|
|
|
|
2013-05-14 20:28:42 +00:00
|
|
|
// set margins
|
2009-09-30 09:18:36 +00:00
|
|
|
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
|
|
|
|
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
|
|
|
|
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
|
|
|
|
|
2013-05-14 20:28:42 +00:00
|
|
|
// set auto page breaks
|
2009-09-30 09:18:36 +00:00
|
|
|
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
|
|
|
|
|
2013-05-14 20:28:42 +00:00
|
|
|
// set image scale factor
|
2010-05-21 16:47:01 +00:00
|
|
|
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// set some language dependent data:
|
|
|
|
$lg = Array();
|
|
|
|
$lg['a_meta_charset'] = 'ISO-8859-1';
|
|
|
|
$lg['a_meta_dir'] = 'ltr';
|
|
|
|
$lg['a_meta_language'] = 'en';
|
|
|
|
$lg['w_page'] = 'page';
|
|
|
|
|
2013-05-14 20:28:42 +00:00
|
|
|
// set some language-dependent strings (optional)
|
2010-12-01 16:09:06 +00:00
|
|
|
$pdf->setLanguageArray($lg);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------
|
|
|
|
|
|
|
|
// set font
|
2010-05-21 16:47:01 +00:00
|
|
|
$pdf->SetFont('helvetica', '', 12);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// add a page
|
|
|
|
$pdf->AddPage();
|
|
|
|
|
2010-05-21 16:47:01 +00:00
|
|
|
// set color for background
|
|
|
|
$pdf->SetFillColor(200, 255, 200);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
2010-05-21 16:47:01 +00:00
|
|
|
$txt = 'An alternative configuration file is used on this example.
|
|
|
|
Check the definition of the K_TCPDF_EXTERNAL_CONFIG constant on the source code.';
|
2009-09-30 09:18:36 +00:00
|
|
|
|
2010-05-21 16:47:01 +00:00
|
|
|
// print some text
|
|
|
|
$pdf->MultiCell(0, 0, $txt."\n", 1, 'J', 1, 1, '', '', true, 0, false, true, 0);
|
2009-09-30 09:18:36 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------
|
|
|
|
|
|
|
|
//Close and output PDF document
|
|
|
|
$pdf->Output('example_019.pdf', 'I');
|
|
|
|
|
|
|
|
//============================================================+
|
2010-12-01 16:09:06 +00:00
|
|
|
// END OF FILE
|
2009-09-30 09:18:36 +00:00
|
|
|
//============================================================+
|