]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/pdf.php
centralize upload paths.
[SourceForge/phpwiki.git] / lib / pdf.php
1 <?php // -*-php-*-
2 rcs_id('$Id: pdf.php,v 1.7 2004-09-22 13:46:26 rurban Exp $');
3 /*
4  Copyright (C) 2003 Olivier PLATHEY
5  Copyright (C) 200? Don Sebà
6  Copyright (C) 2004 Reini Urban
7
8  This file is part of PhpWiki.
9
10  PhpWiki is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  PhpWiki is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License
21  along with PhpWiki; if not, write to the Free Software
22  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */ 
24 /*
25  * Credits:
26  * PDF functions taken from FPDF http://www.fpdf.org
27  * Edited for PHPWebthings by Don Sebà 
28  *   Feel free to edit , enhance the module, and please share it at http://www.phpdbform.com
29  *   Keep PHPWT COOL submit your modules/themes/mods, it will help to improve ! :)
30  * Changes for PhpWiki by Reini Urban
31  */
32
33 require_once('lib/fpdf.php');
34
35 // http://phpwiki.sourceforge.net/phpwiki/PhpWikiToDocBookAndPDF
36 // htmldoc or ghostscript + html2ps or docbook (dbdoclet, xsltproc, fop)
37 // http://www.easysw.com/htmldoc
38 //define("USE_EXTERNAL_HTML2PDF", "htmldoc --quiet --format pdf14 --jpeg --webpage --no-toc --no-title %s");
39
40 class PDF extends FPDF {
41     var $B = 0;
42     var $I = 0;
43     var $U = 0;
44     var $HREF = '';
45
46     function PDF ($orientation='P', $unit='mm', $format='A4') {
47         $this->FPDF($orientation,$unit,$format);
48         //$this->SetCompression(false);
49     }
50
51     // Simple HTML to PDF converter
52     function ConvertFromHTML($html) {
53         $html = str_replace("\n",' ',$html);
54         $a = preg_split('/<(.*)>/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE);
55         foreach($a as $i=>$e) {
56             if ($i % 2 == 0) {
57                 //Text
58                 if($this->HREF)
59                     $this->PutLink($this->HREF,$e);
60                 else
61                     $this->Write(5,$e);
62             } else {
63                 //Tag
64                 if ($e{0} == '/')
65                     $this->CloseTag(strtoupper(substr($e,1)));
66                 else {
67                     //Attributes
68                     $a2 = explode(' ',$e);
69                     $tag = strtoupper(array_shift($a2));
70                     $attr = array();
71                     foreach ($a2 as $v)
72                         if (ereg('^([^=]*)=["\']?([^"\']*)["\']?$',$v,$a3))
73                             $attr[strtoupper($a3[1])]=$a3[2];
74                     $this->OpenTag($tag,$attr);
75                 }
76             }
77         }
78     }
79
80     function Header() {
81         $this->SetY(-15);
82         $this->SetFont('Arial','',9);
83         //URL - space from side - space from top - width
84         if (!DEBUG) {
85           $imgurl = $GLOBALS['WikiTheme']->_findFile("images/logo.png"); // header and wikilogo
86           if ($imgurl)
87             $this->Image($imgurl,3,3);
88         }
89         //Line break
90         //$this->Ln(30);
91     }
92
93     function Footer() {
94         //global $cfg, $config, $lang;
95         //1.5cm below top
96         $this->SetY(-15);
97         //Arial italic 8
98         $this->SetFont('arial','I',8);
99     }
100
101     function OpenTag($tag,$attr) {
102         if($tag=='B' or $tag=='I' or $tag=='U')
103             $this->SetStyle($tag,true);
104         if($tag=='A')
105             $this->HREF=$attr['HREF'];
106         if($tag=='BR')
107             $this->Ln(5);
108     }
109
110     function CloseTag($tag) {
111         if($tag=='B' or $tag=='I' or $tag=='U')
112             $this->SetStyle($tag,false);
113         if($tag=='A')
114             $this->HREF='';
115     }
116     
117     //Wijzig stijl en selecteer lettertype
118     function SetStyle($tag,$enable) {
119         $this->$tag+=($enable ? 1 : -1);
120         $style='';
121         foreach(array('B','I','U') as $s)
122             if($this->$s > 0)
123                 $style .= $s;
124         $this->SetFont('',$style);
125     }
126
127     function PutLink($URL,$txt) {
128         // hyperlink as simple underlined text
129         $this->SetTextColor(0,0,255);
130         $this->SetStyle('U',true);
131         $this->Write(5,$txt,$URL);
132         $this->SetStyle('U',false);
133         $this->SetTextColor(0);
134     }
135 }
136
137 function ConvertAndDisplayPdf (&$request) {
138     if (empty($request->_is_buffering_output))
139         $request->buffer_output(false/*'nocompress'*/);
140     $pagename = $request->getArg('pagename');
141     $dest = $request->getArg('dest');
142     //TODO: inline cached content: /getimg.php? => image.png
143     // Disable CACHE
144
145     include_once("lib/display.php");
146     displayPage($request);
147     $html = ob_get_contents();
148     
149     // check hook for external converters
150     if (defined('USE_EXTERNAL_HTML2PDF')
151         and USE_EXTERNAL_HTML2PDF)
152     {   // See http://phpwiki.sourceforge.net/phpwiki/PhpWikiToDocBookAndPDF
153         // htmldoc or ghostscript + html2ps or docbook (dbdoclet, xsltproc, fop)
154         $request->discardOutput();
155         $request->buffer_output(false/*'nocompress'*/);
156         require_once("lib/WikiPluginCached.php");
157         $cache = new WikiPluginCached;
158         $cache->newCache();
159         $tmpfile = $cache->tempnam();
160         $fp = fopen($tmpfile, "wb");
161         fwrite($fp, $html);
162         fclose($fp);
163         Header('Content-Type: application/pdf');
164         passthru(sprintf(USE_EXTERNAL_HTML2PDF, $tmpfile));
165         unlink($tmpfile);
166     } else {
167         // use fpdf:
168         if ($GLOBALS['LANG'] == 'ja') {
169             include_once("lib/fpdf/japanese.php");
170             $pdf = new PDF_Japanese;
171         } elseif ($GLOBALS['LANG'] == 'zh') {
172             include_once("lib/fpdf/chinese.php");
173             $pdf = new PDF_Chinese;
174         } else {
175             $pdf = new PDF;
176         }
177         $pdf->Open();
178         $pdf->AddPage();
179         $pdf->ConvertFromHTML($html);
180         $request->discardOutput();
181         $request->buffer_output(false/*'nocompress'*/);
182         $pdf->Output($pagename.".pdf", $dest ? $dest : 'I');
183     }
184     if (!empty($errormsg)) {
185         $request->discardOutput();
186     }
187 }
188
189 // $Log: not supported by cvs2svn $
190 // Revision 1.6  2004/09/20 13:40:19  rurban
191 // define all config.ini settings, only the supported will be taken from -default.
192 // support USE_EXTERNAL_HTML2PDF renderer (htmldoc tested)
193 //
194 // Revision 1.5  2004/09/17 14:19:02  rurban
195 // default pdf dest: browser
196 //
197 // Revision 1.4  2004/06/14 11:31:37  rurban
198 // renamed global $Theme to $WikiTheme (gforge nameclash)
199 // inherit PageList default options from PageList
200 //   default sortby=pagename
201 // use options in PageList_Selectable (limit, sortby, ...)
202 // added action revert, with button at action=diff
203 // added option regex to WikiAdminSearchReplace
204 //
205 // Revision 1.3  2004/05/15 19:49:09  rurban
206 // moved action_pdf to lib/pdf.php
207 //
208
209 // Local Variables:
210 // mode: php
211 // tab-width: 8
212 // c-basic-offset: 4
213 // c-hanging-comment-ender-p: nil
214 // indent-tabs-mode: nil
215 // End:
216 ?>