PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.13.1
GiveWP – Donation Plugin and Fundraising Platform v4.13.1
4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 2.31.0 2.31.1 All 253 releases
give / vendor / tecnickcom / tcpdf / examples / example_010.php
example_010.php
153 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 //============================================================+
3 // File name : example_010.php
4 // Begin : 2008-03-04
5 // Last Update : 2013-05-14
6 //
7 // Description : Example 010 for TCPDF class
8 // Text on multiple columns
9 //
10 // Author: Nicola Asuni
11 //
12 // (c) Copyright:
13 // Nicola Asuni
14 // Tecnick.com LTD
15 // www.tecnick.com
16 // info@tecnick.com
17 //============================================================+
18
19 /**
20 * Creates an example PDF TEST document using TCPDF
21 * @package com.tecnick.tcpdf
22 * @abstract TCPDF - Example: Text on multiple columns
23 * @author Nicola Asuni
24 * @since 2008-03-04
25 * @group column
26 * @group pdf
27 */
28
29 // Include the main TCPDF library (search for installation path).
30 require_once('tcpdf_include.php');
31
32
33 /**
34 * Extend TCPDF to work with multiple columns
35 */
36 class MC_TCPDF extends TCPDF {
37
38 /**
39 * Print chapter
40 * @param int $num chapter number
41 * @param string $title chapter title
42 * @param string $file name of the file containing the chapter body
43 * @param boolean $mode if true the chapter body is in HTML, otherwise in simple text.
44 * @public
45 */
46 public function PrintChapter($num, $title, $file, $mode=false) {
47 // add a new page
48 $this->AddPage();
49 // disable existing columns
50 $this->resetColumns();
51 // print chapter title
52 $this->ChapterTitle($num, $title);
53 // set columns
54 $this->setEqualColumns(3, 57);
55 // print chapter body
56 $this->ChapterBody($file, $mode);
57 }
58
59 /**
60 * Set chapter title
61 * @param int $num chapter number
62 * @param string $title chapter title
63 * @public
64 */
65 public function ChapterTitle($num, $title) {
66 $this->setFont('helvetica', '', 14);
67 $this->setFillColor(200, 220, 255);
68 $this->Cell(180, 6, 'Chapter '.$num.' : '.$title, 0, 1, '', 1);
69 $this->Ln(4);
70 }
71
72 /**
73 * Print chapter body
74 * @param string $file name of the file containing the chapter body
75 * @param boolean $mode if true the chapter body is in HTML, otherwise in simple text.
76 * @public
77 */
78 public function ChapterBody($file, $mode=false) {
79 $this->selectColumn();
80 // get esternal file content
81 $content = file_get_contents($file, false);
82 // set font
83 $this->setFont('times', '', 9);
84 $this->setTextColor(50, 50, 50);
85 // print content
86 if ($mode) {
87 // ------ HTML MODE ------
88 $this->writeHTML($content, true, false, true, false, 'J');
89 } else {
90 // ------ TEXT MODE ------
91 $this->Write(0, $content, '', 0, 'J', true, 0, false, true, 0);
92 }
93 $this->Ln();
94 }
95 } // end of extended class
96
97 // ---------------------------------------------------------
98 // EXAMPLE
99 // ---------------------------------------------------------
100 // create new PDF document
101 $pdf = new MC_TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
102
103 // set document information
104 $pdf->setCreator(PDF_CREATOR);
105 $pdf->setAuthor('Nicola Asuni');
106 $pdf->setTitle('TCPDF Example 010');
107 $pdf->setSubject('TCPDF Tutorial');
108 $pdf->setKeywords('TCPDF, PDF, example, test, guide');
109
110 // set default header data
111 $pdf->setHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 010', PDF_HEADER_STRING);
112
113 // set header and footer fonts
114 $pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
115 $pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
116
117 // set default monospaced font
118 $pdf->setDefaultMonospacedFont(PDF_FONT_MONOSPACED);
119
120 // set margins
121 $pdf->setMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
122 $pdf->setHeaderMargin(PDF_MARGIN_HEADER);
123 $pdf->setFooterMargin(PDF_MARGIN_FOOTER);
124
125 // set auto page breaks
126 $pdf->setAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
127
128 // set image scale factor
129 $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
130
131 // set some language-dependent strings (optional)
132 if (@file_exists(dirname(__FILE__).'/lang/eng.php')) {
133 require_once(dirname(__FILE__).'/lang/eng.php');
134 $pdf->setLanguageArray($l);
135 }
136
137 // ---------------------------------------------------------
138
139 // print TEXT
140 $pdf->PrintChapter(1, 'LOREM IPSUM [TEXT]', 'data/chapter_demo_1.txt', false);
141
142 // print HTML
143 $pdf->PrintChapter(2, 'LOREM IPSUM [HTML]', 'data/chapter_demo_2.txt', true);
144
145 // ---------------------------------------------------------
146
147 //Close and output PDF document
148 $pdf->Output('example_010.pdf', 'I');
149
150 //============================================================+
151 // END OF FILE
152 //============================================================+
153