ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
tcpdf_import.php
Go to the documentation of this file.
1<?php
2//============================================================+
3// File name : tcpdf_import.php
4// Version : 1.0.000
5// Begin : 2011-05-23
6// Last Update : 2013-03-17
7// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
8// License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
9// -------------------------------------------------------------------
10// Copyright (C) 2011-2013 Nicola Asuni - Tecnick.com LTD
11//
12// This file is part of TCPDF software library.
13//
14// TCPDF is free software: you can redistribute it and/or modify it
15// under the terms of the GNU Lesser General Public License as
16// published by the Free Software Foundation, either version 3 of the
17// License, or (at your option) any later version.
18//
19// TCPDF is distributed in the hope that it will be useful, but
20// WITHOUT ANY WARRANTY; without even the implied warranty of
21// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22// See the GNU Lesser General Public License for more details.
23//
24// You should have received a copy of the License
25// along with TCPDF. If not, see
26// <http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>.
27//
28// See LICENSE.TXT file for more information.
29// -------------------------------------------------------------------
30//
31// Description : This is a PHP class extension of the TCPDF library to
32// import existing PDF documents.
33//
34//============================================================+
35
45// include the TCPDF class
46require_once(dirname( __FILE__ ) . '/tcpdf.php');
47// include PDF parser class
48require_once(dirname( __FILE__ ) . '/tcpdf_parser.php');
49
59class TCPDF_IMPORT extends TCPDF {
60
68 public function importPDF($filename) {
69 // load document
70 $rawdata = file_get_contents($filename);
71 if ($rawdata === false) {
72 $this->Error('Unable to get the content of the file: '.$filename);
73 }
74 // parse PDF data
75 $pdf = new TCPDF_PARSER($rawdata);
76 $data = $pdf->getParsedData();
77 // release some memory
78 unset($rawdata);
79
80 // ...
81
82
83 print_r($data); // DEBUG
84
85
86 unset($pdf);
87 }
88
89} // END OF CLASS
90
91//============================================================+
92// END OF FILE
93//============================================================+
$filename
Definition: buildRTE.php:89
!!! THIS CLASS IS UNDER DEVELOPMENT !!! PHP class extension of the TCPDF (http://www....
importPDF($filename)
Import an existing PDF document.
This is a PHP class for parsing PDF documents.
PHP class for generating PDF documents without requiring external extensions.
Definition: tcpdf.php:184
Error($msg)
This method is automatically called in case of fatal error; it simply outputs the message and halts t...
Definition: tcpdf.php:2940