tcpdf_import.php Quellcode

tcpdf_import.php
gehe zur Dokumentation dieser Datei
1 <?php
2 //============================================================+
3 // File name : tcpdf_import.php
4 // Version : 1.0.001
5 // Begin : 2011-05-23
6 // Last Update : 2013-09-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
46 require_once(dirname(__FILE__).'/tcpdf.php');
47 // include PDF parser class
48 require_once(dirname(__FILE__).'/tcpdf_parser.php');
49 
59 class 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  // configuration parameters for parser
75  $cfg = array(
76  'die_for_errors' => false,
77  'ignore_filter_decoding_errors' => true,
78  'ignore_missing_filter_decoders' => true,
79  );
80  try {
81  // parse PDF data
82  $pdf = new TCPDF_PARSER($rawdata, $cfg);
83  } catch (Exception $e) {
84  die($e->getMessage());
85  }
86  // get the parsed data
87  $data = $pdf->getParsedData();
88  // release some memory
89  unset($rawdata);
90 
91  // ...
92 
93 
94  print_r($data); // DEBUG
95 
96 
97  unset($pdf);
98  }
99 
100 } // END OF CLASS
101 
102 //============================================================+
103 // END OF FILE
104 //============================================================+




Korrekturen, Hinweise und Ergänzungen

Bitte scheuen Sie sich nicht und melden Sie, was auf dieser Seite sachlich falsch oder irreführend ist, was ergänzt werden sollte, was fehlt usw. Dazu bitte oben aus dem Menü Seite den Eintrag Support Forum wählen. Es ist eine kostenlose Anmeldung erforderlich, um Anmerkungen zu posten. Unpassende Postings, Spam usw. werden kommentarlos entfernt.