2 /*******************************************************************************
6 * Author: Olivier PLATHEY *
9 * You may use, modify and redistribute this software as you wish. *
10 *******************************************************************************/
12 if(!class_exists('FPDF'))
14 define('FPDF_VERSION','1.53');
19 var $page; //current page number
20 var $n; //current object number
21 var $offsets; //array of object offsets
22 var $buffer; //buffer holding in-memory PDF
23 var $pages; //array containing pages
24 var $state; //current document state
25 var $compress; //compression flag
26 var $DefOrientation; //default orientation
27 var $CurOrientation; //current orientation
28 var $OrientationChanges; //array indicating orientation changes
29 var $k; //scale factor (number of points in user unit)
30 var $fwPt,$fhPt; //dimensions of page format in points
31 var $fw,$fh; //dimensions of page format in user unit
32 var $wPt,$hPt; //current dimensions of page in points
33 var $w,$h; //current dimensions of page in user unit
34 var $lMargin; //left margin
35 var $tMargin; //top margin
36 var $rMargin; //right margin
37 var $bMargin; //page break margin
38 var $cMargin; //cell margin
39 var $x,$y; //current position in user unit for cell positioning
40 var $lasth; //height of last cell printed
41 var $LineWidth; //line width in user unit
42 var $CoreFonts; //array of standard font names
43 var $fonts; //array of used fonts
44 var $FontFiles; //array of font files
45 var $diffs; //array of encoding differences
46 var $images; //array of used images
47 var $PageLinks; //array of links in pages
48 var $links; //array of internal links
49 var $FontFamily; //current font family
50 var $FontStyle; //current font style
51 var $underline; //underlining flag
52 var $CurrentFont; //current font info
53 var $FontSizePt; //current font size in points
54 var $FontSize; //current font size in user unit
55 var $DrawColor; //commands for drawing color
56 var $FillColor; //commands for filling color
57 var $TextColor; //commands for text color
58 var $ColorFlag; //indicates whether fill and text colors are different
59 var $ws; //word spacing
60 var $AutoPageBreak; //automatic page breaking
61 var $PageBreakTrigger; //threshold used to trigger page breaks
62 var $InFooter; //flag set when processing footer
63 var $ZoomMode; //zoom display mode
64 var $LayoutMode; //layout display mode
66 var $subject; //subject
68 var $keywords; //keywords
69 var $creator; //creator
70 var $AliasNbPages; //alias for total number of pages
71 var $PDFVersion; //PDF version number
73 /*******************************************************************************
77 *******************************************************************************/
78 function FPDF($orientation='P',$unit='mm',$format='A4')
82 //Initialization of properties
87 $this->OrientationChanges
=array();
90 $this->FontFiles
=array();
92 $this->images
=array();
94 $this->InFooter
=false;
99 $this->underline
=false;
100 $this->DrawColor
='0 G';
101 $this->FillColor
='0 g';
102 $this->TextColor
='0 g';
103 $this->ColorFlag
=false;
106 $this->CoreFonts
=array('courier'=>'Courier','courierB'=>'Courier-Bold','courierI'=>'Courier-Oblique','courierBI'=>'Courier-BoldOblique',
107 'helvetica'=>'Helvetica','helveticaB'=>'Helvetica-Bold','helveticaI'=>'Helvetica-Oblique','helveticaBI'=>'Helvetica-BoldOblique',
108 'times'=>'Times-Roman','timesB'=>'Times-Bold','timesI'=>'Times-Italic','timesBI'=>'Times-BoldItalic',
109 'symbol'=>'Symbol','zapfdingbats'=>'ZapfDingbats');
120 $this->Error('Incorrect unit: '.$unit);
122 if(is_string($format))
124 $format=strtolower($format);
126 $format=array(841.89,1190.55);
127 elseif($format=='a4')
128 $format=array(595.28,841.89);
129 elseif($format=='a5')
130 $format=array(420.94,595.28);
131 elseif($format=='letter')
132 $format=array(612,792);
133 elseif($format=='legal')
134 $format=array(612,1008);
136 $this->Error('Unknown page format: '.$format);
137 $this->fwPt
=$format[0];
138 $this->fhPt
=$format[1];
142 $this->fwPt
=$format[0]*$this->k
;
143 $this->fhPt
=$format[1]*$this->k
;
145 $this->fw
=$this->fwPt
/$this->k
;
146 $this->fh
=$this->fhPt
/$this->k
;
148 $orientation=strtolower($orientation);
149 if($orientation=='p' ||
$orientation=='portrait')
151 $this->DefOrientation
='P';
152 $this->wPt
=$this->fwPt
;
153 $this->hPt
=$this->fhPt
;
155 elseif($orientation=='l' ||
$orientation=='landscape')
157 $this->DefOrientation
='L';
158 $this->wPt
=$this->fhPt
;
159 $this->hPt
=$this->fwPt
;
162 $this->Error('Incorrect orientation: '.$orientation);
163 $this->CurOrientation
=$this->DefOrientation
;
164 $this->w
=$this->wPt
/$this->k
;
165 $this->h
=$this->hPt
/$this->k
;
166 //Page margins (1 cm)
167 $margin=28.35/$this->k
;
168 $this->SetMargins($margin,$margin);
169 //Interior cell margin (1 mm)
170 $this->cMargin
=$margin/10;
171 //Line width (0.2 mm)
172 $this->LineWidth
=.567/$this->k
;
173 //Automatic page break
174 $this->SetAutoPageBreak(true,2*$margin);
175 //Full width display mode
176 $this->SetDisplayMode('fullwidth');
178 $this->SetCompression(true);
179 //Set default PDF version number
180 $this->PDFVersion
='1.3';
183 function SetMargins($left,$top,$right=-1)
185 //Set left, top and right margins
186 $this->lMargin
=$left;
190 $this->rMargin
=$right;
193 function SetLeftMargin($margin)
196 $this->lMargin
=$margin;
197 if($this->page
>0 && $this->x
<$margin)
201 function SetTopMargin($margin)
204 $this->tMargin
=$margin;
207 function SetRightMargin($margin)
210 $this->rMargin
=$margin;
213 function SetAutoPageBreak($auto,$margin=0)
215 //Set auto page break mode and triggering margin
216 $this->AutoPageBreak
=$auto;
217 $this->bMargin
=$margin;
218 $this->PageBreakTrigger
=$this->h
-$margin;
221 function SetDisplayMode($zoom,$layout='continuous')
223 //Set display mode in viewer
224 if($zoom=='fullpage' ||
$zoom=='fullwidth' ||
$zoom=='real' ||
$zoom=='default' ||
!is_string($zoom))
225 $this->ZoomMode
=$zoom;
227 $this->Error('Incorrect zoom display mode: '.$zoom);
228 if($layout=='single' ||
$layout=='continuous' ||
$layout=='two' ||
$layout=='default')
229 $this->LayoutMode
=$layout;
231 $this->Error('Incorrect layout display mode: '.$layout);
234 function SetCompression($compress)
236 //Set page compression
237 if(function_exists('gzcompress'))
238 $this->compress
=$compress;
240 $this->compress
=false;
243 function SetTitle($title)
249 function SetSubject($subject)
251 //Subject of document
252 $this->subject
=$subject;
255 function SetAuthor($author)
258 $this->author
=$author;
261 function SetKeywords($keywords)
263 //Keywords of document
264 $this->keywords
=$keywords;
267 function SetCreator($creator)
269 //Creator of document
270 $this->creator
=$creator;
273 function AliasNbPages($alias='{nb}')
275 //Define an alias for total number of pages
276 $this->AliasNbPages
=$alias;
282 die('<B>FPDF error: </B>'.$msg);
299 $this->InFooter
=true;
301 $this->InFooter
=false;
308 function AddPage($orientation='')
313 $family=$this->FontFamily
;
314 $style=$this->FontStyle
.($this->underline ?
'U' : '');
315 $size=$this->FontSizePt
;
316 $lw=$this->LineWidth
;
317 $dc=$this->DrawColor
;
318 $fc=$this->FillColor
;
319 $tc=$this->TextColor
;
320 $cf=$this->ColorFlag
;
324 $this->InFooter
=true;
326 $this->InFooter
=false;
331 $this->_beginpage($orientation);
332 //Set line cap style to square
335 $this->LineWidth
=$lw;
336 $this->_out(sprintf('%.2f w',$lw*$this->k
));
339 $this->SetFont($family,$style,$size);
341 $this->DrawColor
=$dc;
344 $this->FillColor
=$fc;
347 $this->TextColor
=$tc;
348 $this->ColorFlag
=$cf;
352 if($this->LineWidth
!=$lw)
354 $this->LineWidth
=$lw;
355 $this->_out(sprintf('%.2f w',$lw*$this->k
));
359 $this->SetFont($family,$style,$size);
361 if($this->DrawColor
!=$dc)
363 $this->DrawColor
=$dc;
366 if($this->FillColor
!=$fc)
368 $this->FillColor
=$fc;
371 $this->TextColor
=$tc;
372 $this->ColorFlag
=$cf;
377 //To be implemented in your own inherited class
382 //To be implemented in your own inherited class
387 //Get current page number
391 function SetDrawColor($r,$g=-1,$b=-1)
393 //Set color for all stroking operations
394 if(($r==0 && $g==0 && $b==0) ||
$g==-1)
395 $this->DrawColor
=sprintf('%.3f G',$r/255);
397 $this->DrawColor
=sprintf('%.3f %.3f %.3f RG',$r/255,$g/255,$b/255);
399 $this->_out($this->DrawColor
);
402 function SetFillColor($r,$g=-1,$b=-1)
404 //Set color for all filling operations
405 if(($r==0 && $g==0 && $b==0) ||
$g==-1)
406 $this->FillColor
=sprintf('%.3f g',$r/255);
408 $this->FillColor
=sprintf('%.3f %.3f %.3f rg',$r/255,$g/255,$b/255);
409 $this->ColorFlag
=($this->FillColor
!=$this->TextColor
);
411 $this->_out($this->FillColor
);
414 function SetTextColor($r,$g=-1,$b=-1)
417 if(($r==0 && $g==0 && $b==0) ||
$g==-1)
418 $this->TextColor
=sprintf('%.3f g',$r/255);
420 $this->TextColor
=sprintf('%.3f %.3f %.3f rg',$r/255,$g/255,$b/255);
421 $this->ColorFlag
=($this->FillColor
!=$this->TextColor
);
424 function GetStringWidth($s)
426 //Get width of a string in the current font
428 $cw=&$this->CurrentFont
['cw'];
433 return $w*$this->FontSize
/1000;
436 function SetLineWidth($width)
439 $this->LineWidth
=$width;
441 $this->_out(sprintf('%.2f w',$width*$this->k
));
444 function Line($x1,$y1,$x2,$y2)
447 $this->_out(sprintf('%.2f %.2f m %.2f %.2f l S',$x1*$this->k
,($this->h
-$y1)*$this->k
,$x2*$this->k
,($this->h
-$y2)*$this->k
));
450 function Rect($x,$y,$w,$h,$style='')
455 elseif($style=='FD' ||
$style=='DF')
459 $this->_out(sprintf('%.2f %.2f %.2f %.2f re %s',$x*$this->k
,($this->h
-$y)*$this->k
,$w*$this->k
,-$h*$this->k
,$op));
462 function AddFont($family,$style='',$file='')
464 //Add a TrueType or Type1 font
465 $family=strtolower($family);
467 $file=str_replace(' ','',$family).strtolower($style).'.php';
470 $style=strtoupper($style);
473 $fontkey=$family.$style;
474 if(isset($this->fonts
[$fontkey]))
475 $this->Error('Font already added: '.$family.' '.$style);
476 include($this->_getfontpath().$file);
478 $this->Error('Could not include font definition file');
479 $i=count($this->fonts
)+
1;
480 $this->fonts
[$fontkey]=array('i'=>$i,'type'=>$type,'name'=>$name,'desc'=>$desc,'up'=>$up,'ut'=>$ut,'cw'=>$cw,'enc'=>$enc,'file'=>$file);
483 //Search existing encodings
485 $nb=count($this->diffs
);
486 for($i=1;$i<=$nb;$i++
)
488 if($this->diffs
[$i]==$diff)
497 $this->diffs
[$d]=$diff;
499 $this->fonts
[$fontkey]['diff']=$d;
503 if($type=='TrueType')
504 $this->FontFiles
[$file]=array('length1'=>$originalsize);
506 $this->FontFiles
[$file]=array('length1'=>$size1,'length2'=>$size2);
510 function SetFont($family,$style='',$size=0)
512 //Select a font; size given in points
513 global $fpdf_charwidths;
515 $family=strtolower($family);
517 $family=$this->FontFamily
;
520 elseif($family=='symbol' ||
$family=='zapfdingbats')
522 $style=strtoupper($style);
523 if(strpos($style,'U')!==false)
525 $this->underline
=true;
526 $style=str_replace('U','',$style);
529 $this->underline
=false;
533 $size=$this->FontSizePt
;
534 //Test if font is already selected
535 if($this->FontFamily
==$family && $this->FontStyle
==$style && $this->FontSizePt
==$size)
537 //Test if used for the first time
538 $fontkey=$family.$style;
539 if(!isset($this->fonts
[$fontkey]))
541 //Check if one of the standard fonts
542 if(isset($this->CoreFonts
[$fontkey]))
544 if(!isset($fpdf_charwidths[$fontkey]))
548 if($family=='times' ||
$family=='helvetica')
549 $file.=strtolower($style);
550 include($this->_getfontpath().$file.'.php');
551 if(!isset($fpdf_charwidths[$fontkey]))
552 $this->Error('Could not include font metric file');
554 $i=count($this->fonts
)+
1;
555 $this->fonts
[$fontkey]=array('i'=>$i,'type'=>'core','name'=>$this->CoreFonts
[$fontkey],'up'=>-100,'ut'=>50,'cw'=>$fpdf_charwidths[$fontkey]);
558 $this->Error('Undefined font: '.$family.' '.$style);
561 $this->FontFamily
=$family;
562 $this->FontStyle
=$style;
563 $this->FontSizePt
=$size;
564 $this->FontSize
=$size/$this->k
;
565 $this->CurrentFont
=&$this->fonts
[$fontkey];
567 $this->_out(sprintf('BT /F%d %.2f Tf ET',$this->CurrentFont
['i'],$this->FontSizePt
));
570 function SetFontSize($size)
572 //Set font size in points
573 if($this->FontSizePt
==$size)
575 $this->FontSizePt
=$size;
576 $this->FontSize
=$size/$this->k
;
578 $this->_out(sprintf('BT /F%d %.2f Tf ET',$this->CurrentFont
['i'],$this->FontSizePt
));
583 //Create a new internal link
584 $n=count($this->links
)+
1;
585 $this->links
[$n]=array(0,0);
589 function SetLink($link,$y=0,$page=-1)
591 //Set destination of internal link
596 $this->links
[$link]=array($page,$y);
599 function Link($x,$y,$w,$h,$link)
601 //Put a link on the page
602 $this->PageLinks
[$this->page
][]=array($x*$this->k
,$this->hPt
-$y*$this->k
,$w*$this->k
,$h*$this->k
,$link);
605 function Text($x,$y,$txt)
608 $s=sprintf('BT %.2f %.2f Td (%s) Tj ET',$x*$this->k
,($this->h
-$y)*$this->k
,$this->_escape($txt));
609 if($this->underline
&& $txt!='')
610 $s.=' '.$this->_dounderline($x,$y,$txt);
612 $s='q '.$this->TextColor
.' '.$s.' Q';
616 function AcceptPageBreak()
618 //Accept automatic page break or not
619 return $this->AutoPageBreak
;
622 function Cell($w,$h=0,$txt='',$border=0,$ln=0,$align='',$fill=0,$link='')
626 if($this->y+
$h>$this->PageBreakTrigger
&& !$this->InFooter
&& $this->AcceptPageBreak())
628 //Automatic page break
636 $this->AddPage($this->CurOrientation
);
641 $this->_out(sprintf('%.3f Tw',$ws*$k));
645 $w=$this->w
-$this->rMargin
-$this->x
;
647 if($fill==1 ||
$border==1)
650 $op=($border==1) ?
'B' : 'f';
653 $s=sprintf('%.2f %.2f %.2f %.2f re %s ',$this->x
*$k,($this->h
-$this->y
)*$k,$w*$k,-$h*$k,$op);
655 if(is_string($border))
659 if(strpos($border,'L')!==false)
660 $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',$x*$k,($this->h
-$y)*$k,$x*$k,($this->h
-($y+
$h))*$k);
661 if(strpos($border,'T')!==false)
662 $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',$x*$k,($this->h
-$y)*$k,($x+
$w)*$k,($this->h
-$y)*$k);
663 if(strpos($border,'R')!==false)
664 $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',($x+
$w)*$k,($this->h
-$y)*$k,($x+
$w)*$k,($this->h
-($y+
$h))*$k);
665 if(strpos($border,'B')!==false)
666 $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',$x*$k,($this->h
-($y+
$h))*$k,($x+
$w)*$k,($this->h
-($y+
$h))*$k);
671 $dx=$w-$this->cMargin
-$this->GetStringWidth($txt);
673 $dx=($w-$this->GetStringWidth($txt))/2;
677 $s.='q '.$this->TextColor
.' ';
678 $txt2=str_replace(')','\\)',str_replace('(','\\(',str_replace('\\','\\\\',$txt)));
679 $s.=sprintf('BT %.2f %.2f Td (%s) Tj ET',($this->x+
$dx)*$k,($this->h
-($this->y+
.5*$h+
.3*$this->FontSize
))*$k,$txt2);
681 $s.=' '.$this->_dounderline($this->x+
$dx,$this->y+
.5*$h+
.3*$this->FontSize
,$txt);
685 $this->Link($this->x+
$dx,$this->y+
.5*$h-.5*$this->FontSize
,$this->GetStringWidth($txt),$this->FontSize
,$link);
695 $this->x
=$this->lMargin
;
701 function MultiCell($w,$h,$txt,$border=0,$align='J',$fill=0)
703 //Output text with automatic or explicit line breaks
704 $cw=&$this->CurrentFont
['cw'];
706 $w=$this->w
-$this->rMargin
-$this->x
;
707 $wmax=($w-2*$this->cMargin
)*1000/$this->FontSize
;
708 $s=str_replace("\r",'',$txt);
710 if($nb>0 && $s[$nb-1]=="\n")
724 if(strpos($border,'L')!==false)
726 if(strpos($border,'R')!==false)
728 $b=(strpos($border,'T')!==false) ?
$b2.'T' : $b2;
743 //Explicit line break
749 $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);
756 if($border && $nl==2)
769 //Automatic line break
779 $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);
785 $this->ws
=($ns>1) ?
($wmax-$ls)/1000*$this->FontSize
/($ns-1) : 0;
786 $this->_out(sprintf('%.3f Tw',$this->ws
*$this->k
));
788 $this->Cell($w,$h,substr($s,$j,$sep-$j),$b,2,$align,$fill);
796 if($border && $nl==2)
808 if($border && strpos($border,'B')!==false)
810 $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);
811 $this->x
=$this->lMargin
;
814 function Write($h,$txt,$link='')
816 //Output text in flowing mode
817 $cw=&$this->CurrentFont
['cw'];
818 $w=$this->w
-$this->rMargin
-$this->x
;
819 $wmax=($w-2*$this->cMargin
)*1000/$this->FontSize
;
820 $s=str_replace("\r",'',$txt);
833 //Explicit line break
834 $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link);
841 $this->x
=$this->lMargin
;
842 $w=$this->w
-$this->rMargin
-$this->x
;
843 $wmax=($w-2*$this->cMargin
)*1000/$this->FontSize
;
853 //Automatic line break
856 if($this->x
>$this->lMargin
)
859 $this->x
=$this->lMargin
;
861 $w=$this->w
-$this->rMargin
-$this->x
;
862 $wmax=($w-2*$this->cMargin
)*1000/$this->FontSize
;
869 $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link);
873 $this->Cell($w,$h,substr($s,$j,$sep-$j),0,2,'',0,$link);
881 $this->x
=$this->lMargin
;
882 $w=$this->w
-$this->rMargin
-$this->x
;
883 $wmax=($w-2*$this->cMargin
)*1000/$this->FontSize
;
892 $this->Cell($l/1000*$this->FontSize
,$h,substr($s,$j),0,0,'',0,$link);
895 function Image($file,$x,$y,$w=0,$h=0,$type='',$link='')
897 //Put an image on the page
898 if(!isset($this->images
[$file]))
900 //First use of image, get info
903 $pos=strrpos($file,'.');
905 $this->Error('Image file has no extension and no type was specified: '.$file);
906 $type=substr($file,$pos+
1);
908 $type=strtolower($type);
909 $mqr=get_magic_quotes_runtime();
910 set_magic_quotes_runtime(0);
911 if($type=='jpg' ||
$type=='jpeg')
912 $info=$this->_parsejpg($file);
914 $info=$this->_parsepng($file);
917 //Allow for additional formats
919 if(!method_exists($this,$mtd))
920 $this->Error('Unsupported image type: '.$type);
921 $info=$this->$mtd($file);
923 set_magic_quotes_runtime($mqr);
924 $info['i']=count($this->images
)+
1;
925 $this->images
[$file]=$info;
928 $info=$this->images
[$file];
929 //Automatic width and height calculation if needed
932 //Put image at 72 dpi
933 $w=$info['w']/$this->k
;
934 $h=$info['h']/$this->k
;
937 $w=$h*$info['w']/$info['h'];
939 $h=$w*$info['h']/$info['w'];
940 $this->_out(sprintf('q %.2f 0 0 %.2f %.2f %.2f cm /I%d Do Q',$w*$this->k
,$h*$this->k
,$x*$this->k
,($this->h
-($y+
$h))*$this->k
,$info['i']));
942 $this->Link($x,$y,$w,$h,$link);
947 //Line feed; default value is last cell height
948 $this->x
=$this->lMargin
;
950 $this->y+
=$this->lasth
;
967 $this->x
=$this->w+
$x;
978 //Set y position and reset x
979 $this->x
=$this->lMargin
;
983 $this->y
=$this->h+
$y;
986 function SetXY($x,$y)
988 //Set x and y positions
993 function Output($name='',$dest='')
995 //Output PDF to some destination
996 //Finish document if necessary
999 //Normalize parameters
1001 $dest=$dest ?
'D' : 'F';
1002 $dest=strtoupper($dest);
1016 //Send to standard output
1017 if(ob_get_contents())
1018 $this->Error('Some data has already been output, can\'t send PDF file');
1019 if(php_sapi_name()!='cli')
1021 //We send to a browser
1022 header('Content-Type: application/pdf');
1024 $this->Error('Some data has already been output to browser, can\'t send PDF file');
1025 header('Content-Length: '.strlen($this->buffer
));
1026 header('Content-disposition: inline; filename="'.$name.'"');
1032 if(ob_get_contents())
1033 $this->Error('Some data has already been output, can\'t send PDF file');
1034 if(isset($_SERVER['HTTP_USER_AGENT']) && strpos($_SERVER['HTTP_USER_AGENT'],'MSIE'))
1035 header('Content-Type: application/force-download');
1037 header('Content-Type: application/octet-stream');
1039 $this->Error('Some data has already been output to browser, can\'t send PDF file');
1040 header('Content-Length: '.strlen($this->buffer
));
1041 header('Content-disposition: attachment; filename="'.$name.'"');
1045 //Save to local file
1046 $f=fopen($name,'wb');
1048 $this->Error('Unable to create output file: '.$name);
1049 fwrite($f,$this->buffer
,strlen($this->buffer
));
1053 //Return as a string
1054 return $this->buffer
;
1056 $this->Error('Incorrect output destination: '.$dest);
1061 /*******************************************************************************
1063 * Protected methods *
1065 *******************************************************************************/
1066 function _dochecks()
1068 //Check for locale-related bug
1070 $this->Error('Don\'t alter the locale before including class file');
1071 //Check for decimal separator
1072 if(sprintf('%.1f',1.0)!='1.0')
1073 setlocale(LC_NUMERIC
,'C');
1076 function _getfontpath()
1078 if(!defined('FPDF_FONTPATH') && is_dir(dirname(__FILE__
).'/font'))
1079 define('FPDF_FONTPATH',dirname(__FILE__
).'/font/');
1080 return defined('FPDF_FONTPATH') ? FPDF_FONTPATH
: '';
1083 function _putpages()
1086 if(!empty($this->AliasNbPages
))
1088 //Replace number of pages
1089 for($n=1;$n<=$nb;$n++
)
1090 $this->pages
[$n]=str_replace($this->AliasNbPages
,$nb,$this->pages
[$n]);
1092 if($this->DefOrientation
=='P')
1102 $filter=($this->compress
) ?
'/Filter /FlateDecode ' : '';
1103 for($n=1;$n<=$nb;$n++
)
1107 $this->_out('<</Type /Page');
1108 $this->_out('/Parent 1 0 R');
1109 if(isset($this->OrientationChanges
[$n]))
1110 $this->_out(sprintf('/MediaBox [0 0 %.2f %.2f]',$hPt,$wPt));
1111 $this->_out('/Resources 2 0 R');
1112 if(isset($this->PageLinks
[$n]))
1115 $annots='/Annots [';
1116 foreach($this->PageLinks
[$n] as $pl)
1118 $rect=sprintf('%.2f %.2f %.2f %.2f',$pl[0],$pl[1],$pl[0]+
$pl[2],$pl[1]-$pl[3]);
1119 $annots.='<</Type /Annot /Subtype /Link /Rect ['.$rect.'] /Border [0 0 0] ';
1120 if(is_string($pl[4]))
1121 $annots.='/A <</S /URI /URI '.$this->_textstring($pl[4]).'>>>>';
1124 $l=$this->links
[$pl[4]];
1125 $h=isset($this->OrientationChanges
[$l[0]]) ?
$wPt : $hPt;
1126 $annots.=sprintf('/Dest [%d 0 R /XYZ 0 %.2f null]>>',1+
2*$l[0],$h-$l[1]*$this->k
);
1129 $this->_out($annots.']');
1131 $this->_out('/Contents '.($this->n+
1).' 0 R>>');
1132 $this->_out('endobj');
1134 $p=($this->compress
) ?
gzcompress($this->pages
[$n]) : $this->pages
[$n];
1136 $this->_out('<<'.$filter.'/Length '.strlen($p).'>>');
1137 $this->_putstream($p);
1138 $this->_out('endobj');
1141 $this->offsets
[1]=strlen($this->buffer
);
1142 $this->_out('1 0 obj');
1143 $this->_out('<</Type /Pages');
1145 for($i=0;$i<$nb;$i++
)
1146 $kids.=(3+
2*$i).' 0 R ';
1147 $this->_out($kids.']');
1148 $this->_out('/Count '.$nb);
1149 $this->_out(sprintf('/MediaBox [0 0 %.2f %.2f]',$wPt,$hPt));
1151 $this->_out('endobj');
1154 function _putfonts()
1157 foreach($this->diffs
as $diff)
1161 $this->_out('<</Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences ['.$diff.']>>');
1162 $this->_out('endobj');
1164 $mqr=get_magic_quotes_runtime();
1165 set_magic_quotes_runtime(0);
1166 foreach($this->FontFiles
as $file=>$info)
1168 //Font file embedding
1170 $this->FontFiles
[$file]['n']=$this->n
;
1172 $f=fopen($this->_getfontpath().$file,'rb',1);
1174 $this->Error('Font file not found');
1176 $font.=fread($f,8192);
1178 $compressed=(substr($file,-2)=='.z');
1179 if(!$compressed && isset($info['length2']))
1181 $header=(ord($font{0})==128);
1184 //Strip first binary header
1185 $font=substr($font,6);
1187 if($header && ord($font{$info['length1']})==128)
1189 //Strip second binary header
1190 $font=substr($font,0,$info['length1']).substr($font,$info['length1']+
6);
1193 $this->_out('<</Length '.strlen($font));
1195 $this->_out('/Filter /FlateDecode');
1196 $this->_out('/Length1 '.$info['length1']);
1197 if(isset($info['length2']))
1198 $this->_out('/Length2 '.$info['length2'].' /Length3 0');
1200 $this->_putstream($font);
1201 $this->_out('endobj');
1203 set_magic_quotes_runtime($mqr);
1204 foreach($this->fonts
as $k=>$font)
1207 $this->fonts
[$k]['n']=$this->n+
1;
1208 $type=$font['type'];
1209 $name=$font['name'];
1214 $this->_out('<</Type /Font');
1215 $this->_out('/BaseFont /'.$name);
1216 $this->_out('/Subtype /Type1');
1217 if($name!='Symbol' && $name!='ZapfDingbats')
1218 $this->_out('/Encoding /WinAnsiEncoding');
1220 $this->_out('endobj');
1222 elseif($type=='Type1' ||
$type=='TrueType')
1224 //Additional Type1 or TrueType font
1226 $this->_out('<</Type /Font');
1227 $this->_out('/BaseFont /'.$name);
1228 $this->_out('/Subtype /'.$type);
1229 $this->_out('/FirstChar 32 /LastChar 255');
1230 $this->_out('/Widths '.($this->n+
1).' 0 R');
1231 $this->_out('/FontDescriptor '.($this->n+
2).' 0 R');
1234 if(isset($font['diff']))
1235 $this->_out('/Encoding '.($nf+
$font['diff']).' 0 R');
1237 $this->_out('/Encoding /WinAnsiEncoding');
1240 $this->_out('endobj');
1245 for($i=32;$i<=255;$i++
)
1246 $s.=$cw[chr($i)].' ';
1247 $this->_out($s.']');
1248 $this->_out('endobj');
1251 $s='<</Type /FontDescriptor /FontName /'.$name;
1252 foreach($font['desc'] as $k=>$v)
1254 $file=$font['file'];
1256 $s.=' /FontFile'.($type=='Type1' ?
'' : '2').' '.$this->FontFiles
[$file]['n'].' 0 R';
1257 $this->_out($s.'>>');
1258 $this->_out('endobj');
1262 //Allow for additional types
1263 $mtd='_put'.strtolower($type);
1264 if(!method_exists($this,$mtd))
1265 $this->Error('Unsupported font type: '.$type);
1271 function _putimages()
1273 $filter=($this->compress
) ?
'/Filter /FlateDecode ' : '';
1274 reset($this->images
);
1275 while(list($file,$info)=each($this->images
))
1278 $this->images
[$file]['n']=$this->n
;
1279 $this->_out('<</Type /XObject');
1280 $this->_out('/Subtype /Image');
1281 $this->_out('/Width '.$info['w']);
1282 $this->_out('/Height '.$info['h']);
1283 if($info['cs']=='Indexed')
1284 $this->_out('/ColorSpace [/Indexed /DeviceRGB '.(strlen($info['pal'])/3-1).' '.($this->n+
1).' 0 R]');
1287 $this->_out('/ColorSpace /'.$info['cs']);
1288 if($info['cs']=='DeviceCMYK')
1289 $this->_out('/Decode [1 0 1 0 1 0 1 0]');
1291 $this->_out('/BitsPerComponent '.$info['bpc']);
1292 if(isset($info['f']))
1293 $this->_out('/Filter /'.$info['f']);
1294 if(isset($info['parms']))
1295 $this->_out($info['parms']);
1296 if(isset($info['trns']) && is_array($info['trns']))
1299 for($i=0;$i<count($info['trns']);$i++
)
1300 $trns.=$info['trns'][$i].' '.$info['trns'][$i].' ';
1301 $this->_out('/Mask ['.$trns.']');
1303 $this->_out('/Length '.strlen($info['data']).'>>');
1304 $this->_putstream($info['data']);
1305 unset($this->images
[$file]['data']);
1306 $this->_out('endobj');
1308 if($info['cs']=='Indexed')
1311 $pal=($this->compress
) ?
gzcompress($info['pal']) : $info['pal'];
1312 $this->_out('<<'.$filter.'/Length '.strlen($pal).'>>');
1313 $this->_putstream($pal);
1314 $this->_out('endobj');
1319 function _putxobjectdict()
1321 foreach($this->images
as $image)
1322 $this->_out('/I'.$image['i'].' '.$image['n'].' 0 R');
1325 function _putresourcedict()
1327 $this->_out('/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]');
1328 $this->_out('/Font <<');
1329 foreach($this->fonts
as $font)
1330 $this->_out('/F'.$font['i'].' '.$font['n'].' 0 R');
1332 $this->_out('/XObject <<');
1333 $this->_putxobjectdict();
1337 function _putresources()
1340 $this->_putimages();
1341 //Resource dictionary
1342 $this->offsets
[2]=strlen($this->buffer
);
1343 $this->_out('2 0 obj');
1345 $this->_putresourcedict();
1347 $this->_out('endobj');
1352 $this->_out('/Producer '.$this->_textstring('FPDF '.FPDF_VERSION
));
1353 if(!empty($this->title
))
1354 $this->_out('/Title '.$this->_textstring($this->title
));
1355 if(!empty($this->subject
))
1356 $this->_out('/Subject '.$this->_textstring($this->subject
));
1357 if(!empty($this->author
))
1358 $this->_out('/Author '.$this->_textstring($this->author
));
1359 if(!empty($this->keywords
))
1360 $this->_out('/Keywords '.$this->_textstring($this->keywords
));
1361 if(!empty($this->creator
))
1362 $this->_out('/Creator '.$this->_textstring($this->creator
));
1363 $this->_out('/CreationDate '.$this->_textstring('D:'.date('YmdHis')));
1366 function _putcatalog()
1368 $this->_out('/Type /Catalog');
1369 $this->_out('/Pages 1 0 R');
1370 if($this->ZoomMode
=='fullpage')
1371 $this->_out('/OpenAction [3 0 R /Fit]');
1372 elseif($this->ZoomMode
=='fullwidth')
1373 $this->_out('/OpenAction [3 0 R /FitH null]');
1374 elseif($this->ZoomMode
=='real')
1375 $this->_out('/OpenAction [3 0 R /XYZ null null 1]');
1376 elseif(!is_string($this->ZoomMode
))
1377 $this->_out('/OpenAction [3 0 R /XYZ null null '.($this->ZoomMode
/100).']');
1378 if($this->LayoutMode
=='single')
1379 $this->_out('/PageLayout /SinglePage');
1380 elseif($this->LayoutMode
=='continuous')
1381 $this->_out('/PageLayout /OneColumn');
1382 elseif($this->LayoutMode
=='two')
1383 $this->_out('/PageLayout /TwoColumnLeft');
1386 function _putheader()
1388 $this->_out('%PDF-'.$this->PDFVersion
);
1391 function _puttrailer()
1393 $this->_out('/Size '.($this->n+
1));
1394 $this->_out('/Root '.$this->n
.' 0 R');
1395 $this->_out('/Info '.($this->n
-1).' 0 R');
1400 $this->_putheader();
1402 $this->_putresources();
1408 $this->_out('endobj');
1412 $this->_putcatalog();
1414 $this->_out('endobj');
1416 $o=strlen($this->buffer
);
1417 $this->_out('xref');
1418 $this->_out('0 '.($this->n+
1));
1419 $this->_out('0000000000 65535 f ');
1420 for($i=1;$i<=$this->n
;$i++
)
1421 $this->_out(sprintf('%010d 00000 n ',$this->offsets
[$i]));
1423 $this->_out('trailer');
1425 $this->_puttrailer();
1427 $this->_out('startxref');
1429 $this->_out('%%EOF');
1433 function _beginpage($orientation)
1436 $this->pages
[$this->page
]='';
1438 $this->x
=$this->lMargin
;
1439 $this->y
=$this->tMargin
;
1440 $this->FontFamily
='';
1443 $orientation=$this->DefOrientation
;
1446 $orientation=strtoupper($orientation{0});
1447 if($orientation!=$this->DefOrientation
)
1448 $this->OrientationChanges
[$this->page
]=true;
1450 if($orientation!=$this->CurOrientation
)
1452 //Change orientation
1453 if($orientation=='P')
1455 $this->wPt
=$this->fwPt
;
1456 $this->hPt
=$this->fhPt
;
1462 $this->wPt
=$this->fhPt
;
1463 $this->hPt
=$this->fwPt
;
1467 $this->PageBreakTrigger
=$this->h
-$this->bMargin
;
1468 $this->CurOrientation
=$orientation;
1474 //End of page contents
1480 //Begin a new object
1482 $this->offsets
[$this->n
]=strlen($this->buffer
);
1483 $this->_out($this->n
.' 0 obj');
1486 function _dounderline($x,$y,$txt)
1489 $up=$this->CurrentFont
['up'];
1490 $ut=$this->CurrentFont
['ut'];
1491 $w=$this->GetStringWidth($txt)+
$this->ws
*substr_count($txt,' ');
1492 return sprintf('%.2f %.2f %.2f %.2f re f',$x*$this->k
,($this->h
-($y-$up/1000*$this->FontSize
))*$this->k
,$w*$this->k
,-$ut/1000*$this->FontSizePt
);
1495 function _parsejpg($file)
1497 //Extract info from a JPEG file
1498 $a=GetImageSize($file);
1500 $this->Error('Missing or incorrect image file: '.$file);
1502 $this->Error('Not a JPEG file: '.$file);
1503 if(!isset($a['channels']) ||
$a['channels']==3)
1504 $colspace='DeviceRGB';
1505 elseif($a['channels']==4)
1506 $colspace='DeviceCMYK';
1508 $colspace='DeviceGray';
1509 $bpc=isset($a['bits']) ?
$a['bits'] : 8;
1511 $f=fopen($file,'rb');
1514 $data.=fread($f,4096);
1516 return array('w'=>$a[0],'h'=>$a[1],'cs'=>$colspace,'bpc'=>$bpc,'f'=>'DCTDecode','data'=>$data);
1519 function _parsepng($file)
1521 //Extract info from a PNG file
1522 $f=fopen($file,'rb');
1524 $this->Error('Can\'t open image file: '.$file);
1526 if(fread($f,8)!=chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10))
1527 $this->Error('Not a PNG file: '.$file);
1530 if(fread($f,4)!='IHDR')
1531 $this->Error('Incorrect PNG file: '.$file);
1532 $w=$this->_freadint($f);
1533 $h=$this->_freadint($f);
1534 $bpc=ord(fread($f,1));
1536 $this->Error('16-bit depth not supported: '.$file);
1537 $ct=ord(fread($f,1));
1539 $colspace='DeviceGray';
1541 $colspace='DeviceRGB';
1543 $colspace='Indexed';
1545 $this->Error('Alpha channel not supported: '.$file);
1546 if(ord(fread($f,1))!=0)
1547 $this->Error('Unknown compression method: '.$file);
1548 if(ord(fread($f,1))!=0)
1549 $this->Error('Unknown filter method: '.$file);
1550 if(ord(fread($f,1))!=0)
1551 $this->Error('Interlacing not supported: '.$file);
1553 $parms='/DecodeParms <</Predictor 15 /Colors '.($ct==2 ?
3 : 1).' /BitsPerComponent '.$bpc.' /Columns '.$w.'>>';
1554 //Scan chunks looking for palette, transparency and image data
1560 $n=$this->_freadint($f);
1568 elseif($type=='tRNS')
1570 //Read transparency info
1573 $trns=array(ord(substr($t,1,1)));
1575 $trns=array(ord(substr($t,1,1)),ord(substr($t,3,1)),ord(substr($t,5,1)));
1578 $pos=strpos($t,chr(0));
1584 elseif($type=='IDAT')
1586 //Read image data block
1587 $data.=fread($f,$n);
1590 elseif($type=='IEND')
1596 if($colspace=='Indexed' && empty($pal))
1597 $this->Error('Missing palette in '.$file);
1599 return array('w'=>$w,'h'=>$h,'cs'=>$colspace,'bpc'=>$bpc,'f'=>'FlateDecode','parms'=>$parms,'pal'=>$pal,'trns'=>$trns,'data'=>$data);
1602 function _freadint($f)
1604 //Read a 4-byte integer from file
1605 $a=unpack('Ni',fread($f,4));
1609 function _textstring($s)
1611 //Format a text string
1612 return '('.$this->_escape($s).')';
1615 function _escape($s)
1617 //Add \ before \, ( and )
1618 return str_replace(')','\\)',str_replace('(','\\(',str_replace('\\','\\\\',$s)));
1621 function _putstream($s)
1623 $this->_out('stream');
1625 $this->_out('endstream');
1630 //Add a line to the document
1632 $this->pages
[$this->page
].=$s."\n";
1634 $this->buffer
.=$s."\n";
1639 //Handle special IE contype request
1640 if(isset($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT']=='contype')
1642 header('Content-Type: application/pdf');