From bff6e480f87c335ae60352ad8679c4af09c8879b Mon Sep 17 00:00:00 2001 From: Andreas Oesterreicher Date: Wed, 7 Jun 2017 18:43:31 +0200 Subject: [PATCH] Fixed PHP7 Constructor --- include/pdf.inc.php | 6 +- include/pdf/fpdf.php | 4 +- include/pdf/fpdf.php.ie | 1618 ---------------------------- include/pdf/tutorial/20k_c1.txt | 10 - include/pdf/tutorial/20k_c2.txt | 23 - include/pdf/tutorial/calligra.afm | 275 ----- include/pdf/tutorial/calligra.php | 24 - include/pdf/tutorial/calligra.ttf | Bin 40120 -> 0 bytes include/pdf/tutorial/calligra.z | Bin 25604 -> 0 bytes include/pdf/tutorial/countries.txt | 15 - include/pdf/tutorial/index.htm | 18 - include/pdf/tutorial/logo.png | Bin 2373 -> 0 bytes include/pdf/tutorial/logo_pb.png | Bin 2656 -> 0 bytes include/pdf/tutorial/makefont.php | 6 - include/pdf/tutorial/tuto1.htm | 92 -- include/pdf/tutorial/tuto1.php | 10 - include/pdf/tutorial/tuto2.htm | 50 - include/pdf/tutorial/tuto2.php | 42 - include/pdf/tutorial/tuto3.htm | 43 - include/pdf/tutorial/tuto3.php | 84 -- include/pdf/tutorial/tuto4.htm | 34 - include/pdf/tutorial/tuto4.php | 114 -- include/pdf/tutorial/tuto5.htm | 43 - include/pdf/tutorial/tuto5.php | 102 -- include/pdf/tutorial/tuto6.htm | 68 -- include/pdf/tutorial/tuto6.php | 123 --- include/pdf/tutorial/tuto7.htm | 316 ------ include/pdf/tutorial/tuto7.php | 10 - 28 files changed, 5 insertions(+), 3125 deletions(-) delete mode 100644 include/pdf/fpdf.php.ie delete mode 100644 include/pdf/tutorial/20k_c1.txt delete mode 100644 include/pdf/tutorial/20k_c2.txt delete mode 100644 include/pdf/tutorial/calligra.afm delete mode 100644 include/pdf/tutorial/calligra.php delete mode 100644 include/pdf/tutorial/calligra.ttf delete mode 100644 include/pdf/tutorial/calligra.z delete mode 100644 include/pdf/tutorial/countries.txt delete mode 100644 include/pdf/tutorial/index.htm delete mode 100644 include/pdf/tutorial/logo.png delete mode 100644 include/pdf/tutorial/logo_pb.png delete mode 100644 include/pdf/tutorial/makefont.php delete mode 100644 include/pdf/tutorial/tuto1.htm delete mode 100644 include/pdf/tutorial/tuto1.php delete mode 100644 include/pdf/tutorial/tuto2.htm delete mode 100644 include/pdf/tutorial/tuto2.php delete mode 100644 include/pdf/tutorial/tuto3.htm delete mode 100644 include/pdf/tutorial/tuto3.php delete mode 100644 include/pdf/tutorial/tuto4.htm delete mode 100644 include/pdf/tutorial/tuto4.php delete mode 100644 include/pdf/tutorial/tuto5.htm delete mode 100644 include/pdf/tutorial/tuto5.php delete mode 100644 include/pdf/tutorial/tuto6.htm delete mode 100644 include/pdf/tutorial/tuto6.php delete mode 100644 include/pdf/tutorial/tuto7.htm delete mode 100644 include/pdf/tutorial/tuto7.php diff --git a/include/pdf.inc.php b/include/pdf.inc.php index 19e3ade5a..90279675a 100644 --- a/include/pdf.inc.php +++ b/include/pdf.inc.php @@ -27,10 +27,10 @@ class PDF extends FPDF * letter * legal */ - function PDF($orientation='P',$unit='mm',$format='A4') + function __construct($orientation='P',$unit='mm',$format='A4') { //Call parent constructor - $this->FPDF($orientation,$unit,$format); + parent::__construct($orientation,$unit,$format); //Initialization $this->B=0; $this->I=0; @@ -188,4 +188,4 @@ class PDF extends FPDF } } -?> \ No newline at end of file +?> diff --git a/include/pdf/fpdf.php b/include/pdf/fpdf.php index dc4efd5c0..c86e9ee68 100644 --- a/include/pdf/fpdf.php +++ b/include/pdf/fpdf.php @@ -6,7 +6,7 @@ * Date: 2008-08-03 * * Author: Olivier PLATHEY * *******************************************************************************/ -if (!defined('FPDF_VERSION')) +if (!defined('FPDF_VERSION')) define('FPDF_VERSION','1.6'); class FPDF @@ -72,7 +72,7 @@ var $PDFVersion; //PDF version number * Public methods * * * *******************************************************************************/ -function FPDF($orientation='P', $unit='mm', $format='A4') +function __construct($orientation='P', $unit='mm', $format='A4') { //Some checks $this->_dochecks(); diff --git a/include/pdf/fpdf.php.ie b/include/pdf/fpdf.php.ie deleted file mode 100644 index 631ab7f1e..000000000 --- a/include/pdf/fpdf.php.ie +++ /dev/null @@ -1,1618 +0,0 @@ -_dochecks(); - //Initialization of properties - $this->page=0; - $this->n=2; - $this->buffer=''; - $this->pages=array(); - $this->OrientationChanges=array(); - $this->state=0; - $this->fonts=array(); - $this->FontFiles=array(); - $this->diffs=array(); - $this->images=array(); - $this->links=array(); - $this->InFooter=false; - $this->lasth=0; - $this->FontFamily=''; - $this->FontStyle=''; - $this->FontSizePt=12; - $this->underline=false; - $this->DrawColor='0 G'; - $this->FillColor='0 g'; - $this->TextColor='0 g'; - $this->ColorFlag=false; - $this->ws=0; - //Standard fonts - $this->CoreFonts=array('courier'=>'Courier','courierB'=>'Courier-Bold','courierI'=>'Courier-Oblique','courierBI'=>'Courier-BoldOblique', - 'helvetica'=>'Helvetica','helveticaB'=>'Helvetica-Bold','helveticaI'=>'Helvetica-Oblique','helveticaBI'=>'Helvetica-BoldOblique', - 'times'=>'Times-Roman','timesB'=>'Times-Bold','timesI'=>'Times-Italic','timesBI'=>'Times-BoldItalic', - 'symbol'=>'Symbol','zapfdingbats'=>'ZapfDingbats'); - //Scale factor - if($unit=='pt') - $this->k=1; - elseif($unit=='mm') - $this->k=72/25.4; - elseif($unit=='cm') - $this->k=72/2.54; - elseif($unit=='in') - $this->k=72; - else - $this->Error('Incorrect unit: '.$unit); - //Page format - if(is_string($format)) - { - $format=strtolower($format); - if($format=='a3') - $format=array(841.89,1190.55); - elseif($format=='a4') - $format=array(595.28,841.89); - elseif($format=='a5') - $format=array(420.94,595.28); - elseif($format=='letter') - $format=array(612,792); - elseif($format=='legal') - $format=array(612,1008); - else - $this->Error('Unknown page format: '.$format); - $this->fwPt=$format[0]; - $this->fhPt=$format[1]; - } - else - { - $this->fwPt=$format[0]*$this->k; - $this->fhPt=$format[1]*$this->k; - } - $this->fw=$this->fwPt/$this->k; - $this->fh=$this->fhPt/$this->k; - //Page orientation - $orientation=strtolower($orientation); - if($orientation=='p' or $orientation=='portrait') - { - $this->DefOrientation='P'; - $this->wPt=$this->fwPt; - $this->hPt=$this->fhPt; - } - elseif($orientation=='l' or $orientation=='landscape') - { - $this->DefOrientation='L'; - $this->wPt=$this->fhPt; - $this->hPt=$this->fwPt; - } - else - $this->Error('Incorrect orientation: '.$orientation); - $this->CurOrientation=$this->DefOrientation; - $this->w=$this->wPt/$this->k; - $this->h=$this->hPt/$this->k; - //Page margins (1 cm) - $margin=28.35/$this->k; - $this->SetMargins($margin,$margin); - //Interior cell margin (1 mm) - $this->cMargin=$margin/10; - //Line width (0.2 mm) - $this->LineWidth=.567/$this->k; - //Automatic page break - $this->SetAutoPageBreak(true,2*$margin); - //Full width display mode - $this->SetDisplayMode('fullwidth'); - //Compression - $this->SetCompression(true); -} - -function SetMargins($left,$top,$right=-1) -{ - //Set left, top and right margins - $this->lMargin=$left; - $this->tMargin=$top; - if($right==-1) - $right=$left; - $this->rMargin=$right; -} - -function SetLeftMargin($margin) -{ - //Set left margin - $this->lMargin=$margin; - if($this->page>0 and $this->x<$margin) - $this->x=$margin; -} - -function SetTopMargin($margin) -{ - //Set top margin - $this->tMargin=$margin; -} - -function SetRightMargin($margin) -{ - //Set right margin - $this->rMargin=$margin; -} - -function SetAutoPageBreak($auto,$margin=0) -{ - //Set auto page break mode and triggering margin - $this->AutoPageBreak=$auto; - $this->bMargin=$margin; - $this->PageBreakTrigger=$this->h-$margin; -} - -function SetDisplayMode($zoom,$layout='continuous') -{ - //Set display mode in viewer - if($zoom=='fullpage' or $zoom=='fullwidth' or $zoom=='real' or $zoom=='default' or !is_string($zoom)) - $this->ZoomMode=$zoom; - else - $this->Error('Incorrect zoom display mode: '.$zoom); - if($layout=='single' or $layout=='continuous' or $layout=='two' or $layout=='default') - $this->LayoutMode=$layout; - else - $this->Error('Incorrect layout display mode: '.$layout); -} - -function SetCompression($compress) -{ - //Set page compression - if(function_exists('gzcompress')) - $this->compress=$compress; - else - $this->compress=false; -} - -function SetTitle($title) -{ - //Title of document - $this->title=$title; -} - -function SetSubject($subject) -{ - //Subject of document - $this->subject=$subject; -} - -function SetAuthor($author) -{ - //Author of document - $this->author=$author; -} - -function SetKeywords($keywords) -{ - //Keywords of document - $this->keywords=$keywords; -} - -function SetCreator($creator) -{ - //Creator of document - $this->creator=$creator; -} - -function AliasNbPages($alias='{nb}') -{ - //Define an alias for total number of pages - $this->AliasNbPages=$alias; -} - -function Error($msg) -{ - //Fatal error - die('FPDF error: '.$msg); -} - -function Open() -{ - //Begin document - if($this->state==0) - $this->_begindoc(); -} - -function Close() -{ - //Terminate document - if($this->state==3) - return; - if($this->page==0) - $this->AddPage(); - //Page footer - $this->InFooter=true; - $this->Footer(); - $this->InFooter=false; - //Close page - $this->_endpage(); - //Close document - $this->_enddoc(); -} - -function AddPage($orientation='') -{ - //Start a new page - if($this->state==0) - $this->Open(); - $family=$this->FontFamily; - $style=$this->FontStyle.($this->underline ? 'U' : ''); - $size=$this->FontSizePt; - $lw=$this->LineWidth; - $dc=$this->DrawColor; - $fc=$this->FillColor; - $tc=$this->TextColor; - $cf=$this->ColorFlag; - if($this->page>0) - { - //Page footer - $this->InFooter=true; - $this->Footer(); - $this->InFooter=false; - //Close page - $this->_endpage(); - } - //Start new page - $this->_beginpage($orientation); - //Set line cap style to square - $this->_out('2 J'); - //Set line width - $this->LineWidth=$lw; - $this->_out(sprintf('%.2f w',$lw*$this->k)); - //Set font - if($family) - $this->SetFont($family,$style,$size); - //Set colors - $this->DrawColor=$dc; - if($dc!='0 G') - $this->_out($dc); - $this->FillColor=$fc; - if($fc!='0 g') - $this->_out($fc); - $this->TextColor=$tc; - $this->ColorFlag=$cf; - //Page header - $this->Header(); - //Restore line width - if($this->LineWidth!=$lw) - { - $this->LineWidth=$lw; - $this->_out(sprintf('%.2f w',$lw*$this->k)); - } - //Restore font - if($family) - $this->SetFont($family,$style,$size); - //Restore colors - if($this->DrawColor!=$dc) - { - $this->DrawColor=$dc; - $this->_out($dc); - } - if($this->FillColor!=$fc) - { - $this->FillColor=$fc; - $this->_out($fc); - } - $this->TextColor=$tc; - $this->ColorFlag=$cf; -} - -function Header() -{ - //To be implemented in your own inherited class -} - -function Footer() -{ - //To be implemented in your own inherited class -} - -function PageNo() -{ - //Get current page number - return $this->page; -} - -function SetDrawColor($r,$g=-1,$b=-1) -{ - //Set color for all stroking operations - if(($r==0 and $g==0 and $b==0) or $g==-1) - $this->DrawColor=sprintf('%.3f G',$r/255); - else - $this->DrawColor=sprintf('%.3f %.3f %.3f RG',$r/255,$g/255,$b/255); - if($this->page>0) - $this->_out($this->DrawColor); -} - -function SetFillColor($r,$g=-1,$b=-1) -{ - //Set color for all filling operations - if(($r==0 and $g==0 and $b==0) or $g==-1) - $this->FillColor=sprintf('%.3f g',$r/255); - else - $this->FillColor=sprintf('%.3f %.3f %.3f rg',$r/255,$g/255,$b/255); - $this->ColorFlag=($this->FillColor!=$this->TextColor); - if($this->page>0) - $this->_out($this->FillColor); -} - -function SetTextColor($r,$g=-1,$b=-1) -{ - //Set color for text - if(($r==0 and $g==0 and $b==0) or $g==-1) - $this->TextColor=sprintf('%.3f g',$r/255); - else - $this->TextColor=sprintf('%.3f %.3f %.3f rg',$r/255,$g/255,$b/255); - $this->ColorFlag=($this->FillColor!=$this->TextColor); -} - -function GetStringWidth($s) -{ - //Get width of a string in the current font - $s=(string)$s; - $cw=&$this->CurrentFont['cw']; - $w=0; - $l=strlen($s); - for($i=0;$i<$l;$i++) - $w+=$cw[$s{$i}]; - return $w*$this->FontSize/1000; -} - -function SetLineWidth($width) -{ - //Set line width - $this->LineWidth=$width; - if($this->page>0) - $this->_out(sprintf('%.2f w',$width*$this->k)); -} - -function Line($x1,$y1,$x2,$y2) -{ - //Draw a line - $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)); -} - -function Rect($x,$y,$w,$h,$style='') -{ - //Draw a rectangle - if($style=='F') - $op='f'; - elseif($style=='FD' or $style=='DF') - $op='B'; - else - $op='S'; - $this->_out(sprintf('%.2f %.2f %.2f %.2f re %s',$x*$this->k,($this->h-$y)*$this->k,$w*$this->k,-$h*$this->k,$op)); -} - -function AddFont($family,$style='',$file='') -{ - //Add a TrueType or Type1 font - $family=strtolower($family); - if($family=='arial') - $family='helvetica'; - $style=strtoupper($style); - if($style=='IB') - $style='BI'; - if(isset($this->fonts[$family.$style])) - $this->Error('Font already added: '.$family.' '.$style); - if($file=='') - $file=str_replace(' ','',$family).strtolower($style).'.php'; - if(defined('FPDF_FONTPATH')) - $file=FPDF_FONTPATH.$file; - include($file); - if(!isset($name)) - $this->Error('Could not include font definition file'); - $i=count($this->fonts)+1; - $this->fonts[$family.$style]=array('i'=>$i,'type'=>$type,'name'=>$name,'desc'=>$desc,'up'=>$up,'ut'=>$ut,'cw'=>$cw,'enc'=>$enc,'file'=>$file); - if($diff) - { - //Search existing encodings - $d=0; - $nb=count($this->diffs); - for($i=1;$i<=$nb;$i++) - if($this->diffs[$i]==$diff) - { - $d=$i; - break; - } - if($d==0) - { - $d=$nb+1; - $this->diffs[$d]=$diff; - } - $this->fonts[$family.$style]['diff']=$d; - } - if($file) - { - if($type=='TrueType') - $this->FontFiles[$file]=array('length1'=>$originalsize); - else - $this->FontFiles[$file]=array('length1'=>$size1,'length2'=>$size2); - } -} - -function SetFont($family,$style='',$size=0) -{ - //Select a font; size given in points - global $fpdf_charwidths; - - $family=strtolower($family); - if($family=='') - $family=$this->FontFamily; - if($family=='arial') - $family='helvetica'; - elseif($family=='symbol' or $family=='zapfdingbats') - $style=''; - $style=strtoupper($style); - if(is_int(strpos($style,'U'))) - { - $this->underline=true; - $style=str_replace('U','',$style); - } - else - $this->underline=false; - if($style=='IB') - $style='BI'; - if($size==0) - $size=$this->FontSizePt; - //Test if font is already selected - if($this->FontFamily==$family and $this->FontStyle==$style and $this->FontSizePt==$size) - return; - //Test if used for the first time - $fontkey=$family.$style; - if(!isset($this->fonts[$fontkey])) - { - //Check if one of the standard fonts - if(isset($this->CoreFonts[$fontkey])) - { - if(!isset($fpdf_charwidths[$fontkey])) - { - //Load metric file - $file=$family; - if($family=='times' or $family=='helvetica') - $file.=strtolower($style); - $file.='.php'; - if(defined('FPDF_FONTPATH')) - $file=FPDF_FONTPATH.$file; - include($file); - if(!isset($fpdf_charwidths[$fontkey])) - $this->Error('Could not include font metric file'); - } - $i=count($this->fonts)+1; - $this->fonts[$fontkey]=array('i'=>$i,'type'=>'core','name'=>$this->CoreFonts[$fontkey],'up'=>-100,'ut'=>50,'cw'=>$fpdf_charwidths[$fontkey]); - } - else - $this->Error('Undefined font: '.$family.' '.$style); - } - //Select it - $this->FontFamily=$family; - $this->FontStyle=$style; - $this->FontSizePt=$size; - $this->FontSize=$size/$this->k; - $this->CurrentFont=&$this->fonts[$fontkey]; - if($this->page>0) - $this->_out(sprintf('BT /F%d %.2f Tf ET',$this->CurrentFont['i'],$this->FontSizePt)); -} - -function SetFontSize($size) -{ - //Set font size in points - if($this->FontSizePt==$size) - return; - $this->FontSizePt=$size; - $this->FontSize=$size/$this->k; - if($this->page>0) - $this->_out(sprintf('BT /F%d %.2f Tf ET',$this->CurrentFont['i'],$this->FontSizePt)); -} - -function AddLink() -{ - //Create a new internal link - $n=count($this->links)+1; - $this->links[$n]=array(0,0); - return $n; -} - -function SetLink($link,$y=0,$page=-1) -{ - //Set destination of internal link - if($y==-1) - $y=$this->y; - if($page==-1) - $page=$this->page; - $this->links[$link]=array($page,$y); -} - -function Link($x,$y,$w,$h,$link) -{ - //Put a link on the page - $this->PageLinks[$this->page][]=array($x*$this->k,$this->hPt-$y*$this->k,$w*$this->k,$h*$this->k,$link); -} - -function Text($x,$y,$txt) -{ - //Output a string - $s=sprintf('BT %.2f %.2f Td (%s) Tj ET',$x*$this->k,($this->h-$y)*$this->k,$this->_escape($txt)); - if($this->underline and $txt!='') - $s.=' '.$this->_dounderline($x,$y,$txt); - if($this->ColorFlag) - $s='q '.$this->TextColor.' '.$s.' Q'; - $this->_out($s); -} - -function AcceptPageBreak() -{ - //Accept automatic page break or not - return $this->AutoPageBreak; -} - -function Cell($w,$h=0,$txt='',$border=0,$ln=0,$align='',$fill=0,$link='') -{ - //Output a cell - $k=$this->k; - if($this->y+$h>$this->PageBreakTrigger and !$this->InFooter and $this->AcceptPageBreak()) - { - //Automatic page break - $x=$this->x; - $ws=$this->ws; - if($ws>0) - { - $this->ws=0; - $this->_out('0 Tw'); - } - $this->AddPage($this->CurOrientation); - $this->x=$x; - if($ws>0) - { - $this->ws=$ws; - $this->_out(sprintf('%.3f Tw',$ws*$k)); - } - } - if($w==0) - $w=$this->w-$this->rMargin-$this->x; - $s=''; - if($fill==1 or $border==1) - { - if($fill==1) - $op=($border==1) ? 'B' : 'f'; - else - $op='S'; - $s=sprintf('%.2f %.2f %.2f %.2f re %s ',$this->x*$k,($this->h-$this->y)*$k,$w*$k,-$h*$k,$op); - } - if(is_string($border)) - { - $x=$this->x; - $y=$this->y; - if(is_int(strpos($border,'L'))) - $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',$x*$k,($this->h-$y)*$k,$x*$k,($this->h-($y+$h))*$k); - if(is_int(strpos($border,'T'))) - $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',$x*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-$y)*$k); - if(is_int(strpos($border,'R'))) - $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',($x+$w)*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-($y+$h))*$k); - if(is_int(strpos($border,'B'))) - $s.=sprintf('%.2f %.2f m %.2f %.2f l S ',$x*$k,($this->h-($y+$h))*$k,($x+$w)*$k,($this->h-($y+$h))*$k); - } - if($txt!='') - { - if($align=='R') - $dx=$w-$this->cMargin-$this->GetStringWidth($txt); - elseif($align=='C') - $dx=($w-$this->GetStringWidth($txt))/2; - else - $dx=$this->cMargin; - if($this->ColorFlag) - $s.='q '.$this->TextColor.' '; - $txt2=str_replace(')','\\)',str_replace('(','\\(',str_replace('\\','\\\\',$txt))); - $s.=sprintf('BT %.2f %.2f Td (%s) Tj ET',($this->x+$dx)*$k,($this->h-($this->y+.5*$h+.3*$this->FontSize))*$k,$txt2); - if($this->underline) - $s.=' '.$this->_dounderline($this->x+$dx,$this->y+.5*$h+.3*$this->FontSize,$txt); - if($this->ColorFlag) - $s.=' Q'; - if($link) - $this->Link($this->x+$dx,$this->y+.5*$h-.5*$this->FontSize,$this->GetStringWidth($txt),$this->FontSize,$link); - } - if($s) - $this->_out($s); - $this->lasth=$h; - if($ln>0) - { - //Go to next line - $this->y+=$h; - if($ln==1) - $this->x=$this->lMargin; - } - else - $this->x+=$w; -} - -function MultiCell($w,$h,$txt,$border=0,$align='J',$fill=0) -{ - //Output text with automatic or explicit line breaks - $cw=&$this->CurrentFont['cw']; - if($w==0) - $w=$this->w-$this->rMargin-$this->x; - $wmax=($w-2*$this->cMargin)*1000/$this->FontSize; - $s=str_replace("\r",'',$txt); - $nb=strlen($s); - if($nb>0 and $s[$nb-1]=="\n") - $nb--; - $b=0; - if($border) - { - if($border==1) - { - $border='LTRB'; - $b='LRT'; - $b2='LR'; - } - else - { - $b2=''; - if(is_int(strpos($border,'L'))) - $b2.='L'; - if(is_int(strpos($border,'R'))) - $b2.='R'; - $b=is_int(strpos($border,'T')) ? $b2.'T' : $b2; - } - } - $sep=-1; - $i=0; - $j=0; - $l=0; - $ns=0; - $nl=1; - while($i<$nb) - { - //Get next character - $c=$s{$i}; - if($c=="\n") - { - //Explicit line break - if($this->ws>0) - { - $this->ws=0; - $this->_out('0 Tw'); - } - $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); - $i++; - $sep=-1; - $j=$i; - $l=0; - $ns=0; - $nl++; - if($border and $nl==2) - $b=$b2; - continue; - } - if($c==' ') - { - $sep=$i; - $ls=$l; - $ns++; - } - $l+=$cw[$c]; - if($l>$wmax) - { - //Automatic line break - if($sep==-1) - { - if($i==$j) - $i++; - if($this->ws>0) - { - $this->ws=0; - $this->_out('0 Tw'); - } - $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); - } - else - { - if($align=='J') - { - $this->ws=($ns>1) ? ($wmax-$ls)/1000*$this->FontSize/($ns-1) : 0; - $this->_out(sprintf('%.3f Tw',$this->ws*$this->k)); - } - $this->Cell($w,$h,substr($s,$j,$sep-$j),$b,2,$align,$fill); - $i=$sep+1; - } - $sep=-1; - $j=$i; - $l=0; - $ns=0; - $nl++; - if($border and $nl==2) - $b=$b2; - } - else - $i++; - } - //Last chunk - if($this->ws>0) - { - $this->ws=0; - $this->_out('0 Tw'); - } - if($border and is_int(strpos($border,'B'))) - $b.='B'; - $this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill); - $this->x=$this->lMargin; -} - -function Write($h,$txt,$link='') -{ - //Output text in flowing mode - $cw=&$this->CurrentFont['cw']; - $w=$this->w-$this->rMargin-$this->x; - $wmax=($w-2*$this->cMargin)*1000/$this->FontSize; - $s=str_replace("\r",'',$txt); - $nb=strlen($s); - $sep=-1; - $i=0; - $j=0; - $l=0; - $nl=1; - while($i<$nb) - { - //Get next character - $c=$s{$i}; - if($c=="\n") - { - //Explicit line break - $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link); - $i++; - $sep=-1; - $j=$i; - $l=0; - if($nl==1) - { - $this->x=$this->lMargin; - $w=$this->w-$this->rMargin-$this->x; - $wmax=($w-2*$this->cMargin)*1000/$this->FontSize; - } - $nl++; - continue; - } - if($c==' ') - $sep=$i; - $l+=$cw[$c]; - if($l>$wmax) - { - //Automatic line break - if($sep==-1) - { - if($this->x>$this->lMargin) - { - //Move to next line - $this->x=$this->lMargin; - $this->y+=$h; - $w=$this->w-$this->rMargin-$this->x; - $wmax=($w-2*$this->cMargin)*1000/$this->FontSize; - $i++; - $nl++; - continue; - } - if($i==$j) - $i++; - $this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link); - } - else - { - $this->Cell($w,$h,substr($s,$j,$sep-$j),0,2,'',0,$link); - $i=$sep+1; - } - $sep=-1; - $j=$i; - $l=0; - if($nl==1) - { - $this->x=$this->lMargin; - $w=$this->w-$this->rMargin-$this->x; - $wmax=($w-2*$this->cMargin)*1000/$this->FontSize; - } - $nl++; - } - else - $i++; - } - //Last chunk - if($i!=$j) - $this->Cell($l/1000*$this->FontSize,$h,substr($s,$j),0,0,'',0,$link); -} - -function Image($file,$x,$y,$w=0,$h=0,$type='',$link='') -{ - //Put an image on the page - if(!isset($this->images[$file])) - { - //First use of image, get info - if($type=='') - { - $pos=strrpos($file,'.'); - if(!$pos) - $this->Error('Image file has no extension and no type was specified: '.$file); - $type=substr($file,$pos+1); - } - $type=strtolower($type); - $mqr=get_magic_quotes_runtime(); - set_magic_quotes_runtime(0); - if($type=='jpg' or $type=='jpeg') - $info=$this->_parsejpg($file); - elseif($type=='png') - $info=$this->_parsepng($file); - else - { - //Allow for additional formats - $mtd='_parse'.$type; - if(!method_exists($this,$mtd)) - $this->Error('Unsupported image type: '.$type); - $info=$this->$mtd($file); - } - set_magic_quotes_runtime($mqr); - $info['i']=count($this->images)+1; - $this->images[$file]=$info; - } - else - $info=$this->images[$file]; - //Automatic width and height calculation if needed - if($w==0 and $h==0) - { - //Put image at 72 dpi - $w=$info['w']/$this->k; - $h=$info['h']/$this->k; - } - if($w==0) - $w=$h*$info['w']/$info['h']; - if($h==0) - $h=$w*$info['h']/$info['w']; - $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'])); - if($link) - $this->Link($x,$y,$w,$h,$link); -} - -function Ln($h='') -{ - //Line feed; default value is last cell height - $this->x=$this->lMargin; - if(is_string($h)) - $this->y+=$this->lasth; - else - $this->y+=$h; -} - -function GetX() -{ - //Get x position - return $this->x; -} - -function SetX($x) -{ - //Set x position - if($x>=0) - $this->x=$x; - else - $this->x=$this->w+$x; -} - -function GetY() -{ - //Get y position - return $this->y; -} - -function SetY($y) -{ - //Set y position and reset x - $this->x=$this->lMargin; - if($y>=0) - $this->y=$y; - else - $this->y=$this->h+$y; -} - -function SetXY($x,$y) -{ - //Set x and y positions - $this->SetY($y); - $this->SetX($x); -} - -function Output($name='',$dest='') -{ - //Output PDF to some destination - global $HTTP_SERVER_VARS; - - //Finish document if necessary - if($this->state<3) - $this->Close(); - //Normalize parameters - if(is_bool($dest)) - $dest=$dest ? 'D' : 'F'; - $dest=strtoupper($dest); - if($dest=='') - { - if($name=='') - { - $name='doc.pdf'; - $dest='I'; - } - else - $dest='F'; - } - switch($dest) - { - case 'I': - //Send to standard output - if(isset($HTTP_SERVER_VARS['SERVER_NAME'])) - { - //We send to a browser - Header('Content-Type: application/pdf'); - if(headers_sent()) - $this->Error('Some data has already been output to browser, can\'t send PDF file'); - Header('Content-Length: '.strlen($this->buffer)); - Header('Content-disposition: inline; filename='.$name); - } - echo $this->buffer; - break; - case 'D': - //Download file - if(isset($HTTP_SERVER_VARS['HTTP_USER_AGENT']) and strpos($HTTP_SERVER_VARS['HTTP_USER_AGENT'],'MSIE')) - Header('Content-Type: application/force-download'); - else - Header('Content-Type: application/octet-stream'); - if(headers_sent()) - $this->Error('Some data has already been output to browser, can\'t send PDF file'); - Header('Content-Length: '.strlen($this->buffer)); - Header('Content-disposition: attachment; filename='.$name); - echo $this->buffer; - break; - case 'F': - //Save to local file - $f=fopen($name,'wb'); - if(!$f) - $this->Error('Unable to create output file: '.$name); - fwrite($f,$this->buffer,strlen($this->buffer)); - fclose($f); - break; - case 'S': - //Return as a string - return $this->buffer; - default: - $this->Error('Incorrect output destination: '.$dest); - } - return ''; -} - -/******************************************************************************* -* * -* Protected methods * -* * -*******************************************************************************/ -function _dochecks() -{ - //Check for locale-related bug - if(1.1==1) - $this->Error('Don\'t alter the locale before including class file'); - //Check for decimal separator - if(sprintf('%.1f',1.0)!='1.0') - setlocale(LC_NUMERIC,'C'); -} - -function _begindoc() -{ - //Start document - $this->state=1; - $this->_out('%PDF-1.3'); -} - -function _putpages() -{ - $nb=$this->page; - if(!empty($this->AliasNbPages)) - { - //Replace number of pages - for($n=1;$n<=$nb;$n++) - $this->pages[$n]=str_replace($this->AliasNbPages,$nb,$this->pages[$n]); - } - if($this->DefOrientation=='P') - { - $wPt=$this->fwPt; - $hPt=$this->fhPt; - } - else - { - $wPt=$this->fhPt; - $hPt=$this->fwPt; - } - $filter=($this->compress) ? '/Filter /FlateDecode ' : ''; - for($n=1;$n<=$nb;$n++) - { - //Page - $this->_newobj(); - $this->_out('<_out('/Parent 1 0 R'); - if(isset($this->OrientationChanges[$n])) - $this->_out(sprintf('/MediaBox [0 0 %.2f %.2f]',$hPt,$wPt)); - $this->_out('/Resources 2 0 R'); - if(isset($this->PageLinks[$n])) - { - //Links - $annots='/Annots ['; - foreach($this->PageLinks[$n] as $pl) - { - $rect=sprintf('%.2f %.2f %.2f %.2f',$pl[0],$pl[1],$pl[0]+$pl[2],$pl[1]-$pl[3]); - $annots.='<_textstring($pl[4]).'>>>>'; - else - { - $l=$this->links[$pl[4]]; - $h=isset($this->OrientationChanges[$l[0]]) ? $wPt : $hPt; - $annots.=sprintf('/Dest [%d 0 R /XYZ 0 %.2f null]>>',1+2*$l[0],$h-$l[1]*$this->k); - } - } - $this->_out($annots.']'); - } - $this->_out('/Contents '.($this->n+1).' 0 R>>'); - $this->_out('endobj'); - //Page content - $p=($this->compress) ? gzcompress($this->pages[$n]) : $this->pages[$n]; - $this->_newobj(); - $this->_out('<<'.$filter.'/Length '.strlen($p).'>>'); - $this->_putstream($p); - $this->_out('endobj'); - } - //Pages root - $this->offsets[1]=strlen($this->buffer); - $this->_out('1 0 obj'); - $this->_out('<_out($kids.']'); - $this->_out('/Count '.$nb); - $this->_out(sprintf('/MediaBox [0 0 %.2f %.2f]',$wPt,$hPt)); - $this->_out('>>'); - $this->_out('endobj'); -} - -function _putfonts() -{ - $nf=$this->n; - foreach($this->diffs as $diff) - { - //Encodings - $this->_newobj(); - $this->_out('<>'); - $this->_out('endobj'); - } - $mqr=get_magic_quotes_runtime(); - set_magic_quotes_runtime(0); - foreach($this->FontFiles as $file=>$info) - { - //Font file embedding - $this->_newobj(); - $this->FontFiles[$file]['n']=$this->n; - if(defined('FPDF_FONTPATH')) - $file=FPDF_FONTPATH.$file; - $size=filesize($file); - if(!$size) - $this->Error('Font file not found'); - $this->_out('<_out('/Filter /FlateDecode'); - $this->_out('/Length1 '.$info['length1']); - if(isset($info['length2'])) - $this->_out('/Length2 '.$info['length2'].' /Length3 0'); - $this->_out('>>'); - $f=fopen($file,'rb'); - $this->_putstream(fread($f,$size)); - fclose($f); - $this->_out('endobj'); - } - set_magic_quotes_runtime($mqr); - foreach($this->fonts as $k=>$font) - { - //Font objects - $this->fonts[$k]['n']=$this->n+1; - $type=$font['type']; - $name=$font['name']; - if($type=='core') - { - //Standard font - $this->_newobj(); - $this->_out('<_out('/BaseFont /'.$name); - $this->_out('/Subtype /Type1'); - if($name!='Symbol' and $name!='ZapfDingbats') - $this->_out('/Encoding /WinAnsiEncoding'); - $this->_out('>>'); - $this->_out('endobj'); - } - elseif($type=='Type1' or $type=='TrueType') - { - //Additional Type1 or TrueType font - $this->_newobj(); - $this->_out('<_out('/BaseFont /'.$name); - $this->_out('/Subtype /'.$type); - $this->_out('/FirstChar 32 /LastChar 255'); - $this->_out('/Widths '.($this->n+1).' 0 R'); - $this->_out('/FontDescriptor '.($this->n+2).' 0 R'); - if($font['enc']) - { - if(isset($font['diff'])) - $this->_out('/Encoding '.($nf+$font['diff']).' 0 R'); - else - $this->_out('/Encoding /WinAnsiEncoding'); - } - $this->_out('>>'); - $this->_out('endobj'); - //Widths - $this->_newobj(); - $cw=&$font['cw']; - $s='['; - for($i=32;$i<=255;$i++) - $s.=$cw[chr($i)].' '; - $this->_out($s.']'); - $this->_out('endobj'); - //Descriptor - $this->_newobj(); - $s='<$v) - $s.=' /'.$k.' '.$v; - $file=$font['file']; - if($file) - $s.=' /FontFile'.($type=='Type1' ? '' : '2').' '.$this->FontFiles[$file]['n'].' 0 R'; - $this->_out($s.'>>'); - $this->_out('endobj'); - } - else - { - //Allow for additional types - $mtd='_put'.strtolower($type); - if(!method_exists($this,$mtd)) - $this->Error('Unsupported font type: '.$type); - $this->$mtd($font); - } - } -} - -function _putimages() -{ - $filter=($this->compress) ? '/Filter /FlateDecode ' : ''; - reset($this->images); - while(list($file,$info)=each($this->images)) - { - $this->_newobj(); - $this->images[$file]['n']=$this->n; - $this->_out('<_out('/Subtype /Image'); - $this->_out('/Width '.$info['w']); - $this->_out('/Height '.$info['h']); - if($info['cs']=='Indexed') - $this->_out('/ColorSpace [/Indexed /DeviceRGB '.(strlen($info['pal'])/3-1).' '.($this->n+1).' 0 R]'); - else - { - $this->_out('/ColorSpace /'.$info['cs']); - if($info['cs']=='DeviceCMYK') - $this->_out('/Decode [1 0 1 0 1 0 1 0]'); - } - $this->_out('/BitsPerComponent '.$info['bpc']); - $this->_out('/Filter /'.$info['f']); - if(isset($info['parms'])) - $this->_out($info['parms']); - if(isset($info['trns']) and is_array($info['trns'])) - { - $trns=''; - for($i=0;$i_out('/Mask ['.$trns.']'); - } - $this->_out('/Length '.strlen($info['data']).'>>'); - $this->_putstream($info['data']); - unset($this->images[$file]['data']); - $this->_out('endobj'); - //Palette - if($info['cs']=='Indexed') - { - $this->_newobj(); - $pal=($this->compress) ? gzcompress($info['pal']) : $info['pal']; - $this->_out('<<'.$filter.'/Length '.strlen($pal).'>>'); - $this->_putstream($pal); - $this->_out('endobj'); - } - } -} - -function _putresources() -{ - $this->_putfonts(); - $this->_putimages(); - //Resource dictionary - $this->offsets[2]=strlen($this->buffer); - $this->_out('2 0 obj'); - $this->_out('<_out('/Font <<'); - foreach($this->fonts as $font) - $this->_out('/F'.$font['i'].' '.$font['n'].' 0 R'); - $this->_out('>>'); - if(count($this->images)) - { - $this->_out('/XObject <<'); - foreach($this->images as $image) - $this->_out('/I'.$image['i'].' '.$image['n'].' 0 R'); - $this->_out('>>'); - } - $this->_out('>>'); - $this->_out('endobj'); -} - -function _putinfo() -{ - $this->_out('/Producer '.$this->_textstring('FPDF '.FPDF_VERSION)); - if(!empty($this->title)) - $this->_out('/Title '.$this->_textstring($this->title)); - if(!empty($this->subject)) - $this->_out('/Subject '.$this->_textstring($this->subject)); - if(!empty($this->author)) - $this->_out('/Author '.$this->_textstring($this->author)); - if(!empty($this->keywords)) - $this->_out('/Keywords '.$this->_textstring($this->keywords)); - if(!empty($this->creator)) - $this->_out('/Creator '.$this->_textstring($this->creator)); - $this->_out('/CreationDate '.$this->_textstring('D:'.date('YmdHis'))); -} - -function _putcatalog() -{ - $this->_out('/Type /Catalog'); - $this->_out('/Pages 1 0 R'); - if($this->ZoomMode=='fullpage') - $this->_out('/OpenAction [3 0 R /Fit]'); - elseif($this->ZoomMode=='fullwidth') - $this->_out('/OpenAction [3 0 R /FitH null]'); - elseif($this->ZoomMode=='real') - $this->_out('/OpenAction [3 0 R /XYZ null null 1]'); - elseif(!is_string($this->ZoomMode)) - $this->_out('/OpenAction [3 0 R /XYZ null null '.($this->ZoomMode/100).']'); - if($this->LayoutMode=='single') - $this->_out('/PageLayout /SinglePage'); - elseif($this->LayoutMode=='continuous') - $this->_out('/PageLayout /OneColumn'); - elseif($this->LayoutMode=='two') - $this->_out('/PageLayout /TwoColumnLeft'); -} - -function _puttrailer() -{ - $this->_out('/Size '.($this->n+1)); - $this->_out('/Root '.$this->n.' 0 R'); - $this->_out('/Info '.($this->n-1).' 0 R'); -} - -function _enddoc() -{ - $this->_putpages(); - $this->_putresources(); - //Info - $this->_newobj(); - $this->_out('<<'); - $this->_putinfo(); - $this->_out('>>'); - $this->_out('endobj'); - //Catalog - $this->_newobj(); - $this->_out('<<'); - $this->_putcatalog(); - $this->_out('>>'); - $this->_out('endobj'); - //Cross-ref - $o=strlen($this->buffer); - $this->_out('xref'); - $this->_out('0 '.($this->n+1)); - $this->_out('0000000000 65535 f '); - for($i=1;$i<=$this->n;$i++) - $this->_out(sprintf('%010d 00000 n ',$this->offsets[$i])); - //Trailer - $this->_out('trailer'); - $this->_out('<<'); - $this->_puttrailer(); - $this->_out('>>'); - $this->_out('startxref'); - $this->_out($o); - $this->_out('%%EOF'); - $this->state=3; -} - -function _beginpage($orientation) -{ - $this->page++; - $this->pages[$this->page]=''; - $this->state=2; - $this->x=$this->lMargin; - $this->y=$this->tMargin; - $this->FontFamily=''; - //Page orientation - if(!$orientation) - $orientation=$this->DefOrientation; - else - { - $orientation=strtoupper($orientation{0}); - if($orientation!=$this->DefOrientation) - $this->OrientationChanges[$this->page]=true; - } - if($orientation!=$this->CurOrientation) - { - //Change orientation - if($orientation=='P') - { - $this->wPt=$this->fwPt; - $this->hPt=$this->fhPt; - $this->w=$this->fw; - $this->h=$this->fh; - } - else - { - $this->wPt=$this->fhPt; - $this->hPt=$this->fwPt; - $this->w=$this->fh; - $this->h=$this->fw; - } - $this->PageBreakTrigger=$this->h-$this->bMargin; - $this->CurOrientation=$orientation; - } -} - -function _endpage() -{ - //End of page contents - $this->state=1; -} - -function _newobj() -{ - //Begin a new object - $this->n++; - $this->offsets[$this->n]=strlen($this->buffer); - $this->_out($this->n.' 0 obj'); -} - -function _dounderline($x,$y,$txt) -{ - //Underline text - $up=$this->CurrentFont['up']; - $ut=$this->CurrentFont['ut']; - $w=$this->GetStringWidth($txt)+$this->ws*substr_count($txt,' '); - 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); -} - -function _parsejpg($file) -{ - //Extract info from a JPEG file - $a=GetImageSize($file); - if(!$a) - $this->Error('Missing or incorrect image file: '.$file); - if($a[2]!=2) - $this->Error('Not a JPEG file: '.$file); - if(!isset($a['channels']) or $a['channels']==3) - $colspace='DeviceRGB'; - elseif($a['channels']==4) - $colspace='DeviceCMYK'; - else - $colspace='DeviceGray'; - $bpc=isset($a['bits']) ? $a['bits'] : 8; - //Read whole file - $f=fopen($file,'rb'); - $data=''; - while(!feof($f)) - $data.=fread($f,4096); - fclose($f); - return array('w'=>$a[0],'h'=>$a[1],'cs'=>$colspace,'bpc'=>$bpc,'f'=>'DCTDecode','data'=>$data); -} - -function _parsepng($file) -{ - //Extract info from a PNG file - $f=fopen($file,'rb'); - if(!$f) - $this->Error('Can\'t open image file: '.$file); - //Check signature - if(fread($f,8)!=chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10)) - $this->Error('Not a PNG file: '.$file); - //Read header chunk - fread($f,4); - if(fread($f,4)!='IHDR') - $this->Error('Incorrect PNG file: '.$file); - $w=$this->_freadint($f); - $h=$this->_freadint($f); - $bpc=ord(fread($f,1)); - if($bpc>8) - $this->Error('16-bit depth not supported: '.$file); - $ct=ord(fread($f,1)); - if($ct==0) - $colspace='DeviceGray'; - elseif($ct==2) - $colspace='DeviceRGB'; - elseif($ct==3) - $colspace='Indexed'; - else - $this->Error('Alpha channel not supported: '.$file); - if(ord(fread($f,1))!=0) - $this->Error('Unknown compression method: '.$file); - if(ord(fread($f,1))!=0) - $this->Error('Unknown filter method: '.$file); - if(ord(fread($f,1))!=0) - $this->Error('Interlacing not supported: '.$file); - fread($f,4); - $parms='/DecodeParms <>'; - //Scan chunks looking for palette, transparency and image data - $pal=''; - $trns=''; - $data=''; - do - { - $n=$this->_freadint($f); - $type=fread($f,4); - if($type=='PLTE') - { - //Read palette - $pal=fread($f,$n); - fread($f,4); - } - elseif($type=='tRNS') - { - //Read transparency info - $t=fread($f,$n); - if($ct==0) - $trns=array(ord(substr($t,1,1))); - elseif($ct==2) - $trns=array(ord(substr($t,1,1)),ord(substr($t,3,1)),ord(substr($t,5,1))); - else - { - $pos=strpos($t,chr(0)); - if(is_int($pos)) - $trns=array($pos); - } - fread($f,4); - } - elseif($type=='IDAT') - { - //Read image data block - $data.=fread($f,$n); - fread($f,4); - } - elseif($type=='IEND') - break; - else - fread($f,$n+4); - } - while($n); - if($colspace=='Indexed' and empty($pal)) - $this->Error('Missing palette in '.$file); - fclose($f); - return array('w'=>$w,'h'=>$h,'cs'=>$colspace,'bpc'=>$bpc,'f'=>'FlateDecode','parms'=>$parms,'pal'=>$pal,'trns'=>$trns,'data'=>$data); -} - -function _freadint($f) -{ - //Read a 4-byte integer from file - $i=ord(fread($f,1))<<24; - $i+=ord(fread($f,1))<<16; - $i+=ord(fread($f,1))<<8; - $i+=ord(fread($f,1)); - return $i; -} - -function _textstring($s) -{ - //Format a text string - return '('.$this->_escape($s).')'; -} - -function _escape($s) -{ - //Add \ before \, ( and ) - return str_replace(')','\\)',str_replace('(','\\(',str_replace('\\','\\\\',$s))); -} - -function _putstream($s) -{ - $this->_out('stream'); - $this->_out($s); - $this->_out('endstream'); -} - -function _out($s) -{ - //Add a line to the document - if($this->state==2) - $this->pages[$this->page].=$s."\n"; - else - $this->buffer.=$s."\n"; -} -//End of class -} - -//Handle special IE contype request -if(isset($HTTP_SERVER_VARS['HTTP_USER_AGENT']) and $HTTP_SERVER_VARS['HTTP_USER_AGENT']=='contype') -{ - Header('Content-Type: application/pdf'); - exit; -} - -} -?> diff --git a/include/pdf/tutorial/20k_c1.txt b/include/pdf/tutorial/20k_c1.txt deleted file mode 100644 index 0b09f265f..000000000 --- a/include/pdf/tutorial/20k_c1.txt +++ /dev/null @@ -1,10 +0,0 @@ -The year 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten. Without getting into those rumors that upset civilians in the seaports and deranged the public mind even far inland, it must be said that professional seamen were especially alarmed. Traders, shipowners, captains of vessels, skippers, and master mariners from Europe and America, naval officers from every country, and at their heels the various national governments on these two continents, were all extremely disturbed by the business. -In essence, over a period of time several ships had encountered "an enormous thing" at sea, a long spindle-shaped object, sometimes giving off a phosphorescent glow, infinitely bigger and faster than any whale. -The relevant data on this apparition, as recorded in various logbooks, agreed pretty closely as to the structure of the object or creature in question, its unprecedented speed of movement, its startling locomotive power, and the unique vitality with which it seemed to be gifted. If it was a cetacean, it exceeded in bulk any whale previously classified by science. No naturalist, neither Cuvier nor Lacépède, neither Professor Dumeril nor Professor de Quatrefages, would have accepted the existence of such a monster sight unseen -- specifically, unseen by their own scientific eyes. -Striking an average of observations taken at different times -- rejecting those timid estimates that gave the object a length of 200 feet, and ignoring those exaggerated views that saw it as a mile wide and three long--you could still assert that this phenomenal creature greatly exceeded the dimensions of anything then known to ichthyologists, if it existed at all. -Now then, it did exist, this was an undeniable fact; and since the human mind dotes on objects of wonder, you can understand the worldwide excitement caused by this unearthly apparition. As for relegating it to the realm of fiction, that charge had to be dropped. -In essence, on July 20, 1866, the steamer Governor Higginson, from the Calcutta & Burnach Steam Navigation Co., encountered this moving mass five miles off the eastern shores of Australia. Captain Baker at first thought he was in the presence of an unknown reef; he was even about to fix its exact position when two waterspouts shot out of this inexplicable object and sprang hissing into the air some 150 feet. So, unless this reef was subject to the intermittent eruptions of a geyser, the Governor Higginson had fair and honest dealings with some aquatic mammal, until then unknown, that could spurt from its blowholes waterspouts mixed with air and steam. -Similar events were likewise observed in Pacific seas, on July 23 of the same year, by the Christopher Columbus from the West India & Pacific Steam Navigation Co. Consequently, this extraordinary cetacean could transfer itself from one locality to another with startling swiftness, since within an interval of just three days, the Governor Higginson and the Christopher Columbus had observed it at two positions on the charts separated by a distance of more than 700 nautical leagues. -Fifteen days later and 2,000 leagues farther, the Helvetia from the Compagnie Nationale and the Shannon from the Royal Mail line, running on opposite tacks in that part of the Atlantic lying between the United States and Europe, respectively signaled each other that the monster had been sighted in latitude 42 degrees 15' north and longitude 60 degrees 35' west of the meridian of Greenwich. From their simultaneous observations, they were able to estimate the mammal's minimum length at more than 350 English feet; this was because both the Shannon and the Helvetia were of smaller dimensions, although each measured 100 meters stem to stern. Now then, the biggest whales, those rorqual whales that frequent the waterways of the Aleutian Islands, have never exceeded a length of 56 meters--if they reach even that. -One after another, reports arrived that would profoundly affect public opinion: new observations taken by the transatlantic liner Pereire, the Inman line's Etna running afoul of the monster, an official report drawn up by officers on the French frigate Normandy, dead-earnest reckonings obtained by the general staff of Commodore Fitz-James aboard the Lord Clyde. In lighthearted countries, people joked about this phenomenon, but such serious, practical countries as England, America, and Germany were deeply concerned. -In every big city the monster was the latest rage; they sang about it in the coffee houses, they ridiculed it in the newspapers, they dramatized it in the theaters. The tabloids found it a fine opportunity for hatching all sorts of hoaxes. In those newspapers short of copy, you saw the reappearance of every gigantic imaginary creature, from "Moby Dick," that dreadful white whale from the High Arctic regions, to the stupendous kraken whose tentacles could entwine a 500-ton craft and drag it into the ocean depths. They even reprinted reports from ancient times: the views of Aristotle and Pliny accepting the existence of such monsters, then the Norwegian stories of Bishop Pontoppidan, the narratives of Paul Egede, and finally the reports of Captain Harrington -- whose good faith is above suspicion--in which he claims he saw, while aboard the Castilian in 1857, one of those enormous serpents that, until then, had frequented only the seas of France's old extremist newspaper, The Constitutionalist. diff --git a/include/pdf/tutorial/20k_c2.txt b/include/pdf/tutorial/20k_c2.txt deleted file mode 100644 index 096dbd193..000000000 --- a/include/pdf/tutorial/20k_c2.txt +++ /dev/null @@ -1,23 +0,0 @@ -During the period in which these developments were occurring, I had returned from a scientific undertaking organized to explore the Nebraska badlands in the United States. In my capacity as Assistant Professor at the Paris Museum of Natural History, I had been attached to this expedition by the French government. After spending six months in Nebraska, I arrived in New York laden with valuable collections near the end of March. My departure for France was set for early May. In the meantime, then, I was busy classifying my mineralogical, botanical, and zoological treasures when that incident took place with the Scotia. -I was perfectly abreast of this question, which was the big news of the day, and how could I not have been? I had read and reread every American and European newspaper without being any farther along. This mystery puzzled me. Finding it impossible to form any views, I drifted from one extreme to the other. Something was out there, that much was certain, and any doubting Thomas was invited to place his finger on the Scotia's wound. -When I arrived in New York, the question was at the boiling point. The hypothesis of a drifting islet or an elusive reef, put forward by people not quite in their right minds, was completely eliminated. And indeed, unless this reef had an engine in its belly, how could it move about with such prodigious speed? -Also discredited was the idea of a floating hull or some other enormous wreckage, and again because of this speed of movement. -So only two possible solutions to the question were left, creating two very distinct groups of supporters: on one side, those favoring a monster of colossal strength; on the other, those favoring an "underwater boat" of tremendous motor power. -Now then, although the latter hypothesis was completely admissible, it couldn't stand up to inquiries conducted in both the New World and the Old. That a private individual had such a mechanism at his disposal was less than probable. Where and when had he built it, and how could he have built it in secret? -Only some government could own such an engine of destruction, and in these disaster-filled times, when men tax their ingenuity to build increasingly powerful aggressive weapons, it was possible that, unknown to the rest of the world, some nation could have been testing such a fearsome machine. The Chassepot rifle led to the torpedo, and the torpedo has led to this underwater battering ram, which in turn will lead to the world putting its foot down. At least I hope it will. -But this hypothesis of a war machine collapsed in the face of formal denials from the various governments. Since the public interest was at stake and transoceanic travel was suffering, the sincerity of these governments could not be doubted. Besides, how could the assembly of this underwater boat have escaped public notice? Keeping a secret under such circumstances would be difficult enough for an individual, and certainly impossible for a nation whose every move is under constant surveillance by rival powers. -So, after inquiries conducted in England, France, Russia, Prussia, Spain, Italy, America, and even Turkey, the hypothesis of an underwater Monitor was ultimately rejected. -After I arrived in New York, several people did me the honor of consulting me on the phenomenon in question. In France I had published a two-volume work, in quarto, entitled The Mysteries of the Great Ocean Depths. Well received in scholarly circles, this book had established me as a specialist in this pretty obscure field of natural history. My views were in demand. As long as I could deny the reality of the business, I confined myself to a flat "no comment." But soon, pinned to the wall, I had to explain myself straight out. And in this vein, "the honorable Pierre Aronnax, Professor at the Paris Museum," was summoned by The New York Herald to formulate his views no matter what. -I complied. Since I could no longer hold my tongue, I let it wag. I discussed the question in its every aspect, both political and scientific, and this is an excerpt from the well-padded article I published in the issue of April 30. - -"Therefore," I wrote, "after examining these different hypotheses one by one, we are forced, every other supposition having been refuted, to accept the existence of an extremely powerful marine animal. -"The deepest parts of the ocean are totally unknown to us. No soundings have been able to reach them. What goes on in those distant depths? What creatures inhabit, or could inhabit, those regions twelve or fifteen miles beneath the surface of the water? What is the constitution of these animals? It's almost beyond conjecture. -"However, the solution to this problem submitted to me can take the form of a choice between two alternatives. -"Either we know every variety of creature populating our planet, or we do not. -"If we do not know every one of them, if nature still keeps ichthyological secrets from us, nothing is more admissible than to accept the existence of fish or cetaceans of new species or even new genera, animals with a basically 'cast-iron' constitution that inhabit strata beyond the reach of our soundings, and which some development or other, an urge or a whim if you prefer, can bring to the upper level of the ocean for long intervals. -"If, on the other hand, we do know every living species, we must look for the animal in question among those marine creatures already cataloged, and in this event I would be inclined to accept the existence of a giant narwhale. -"The common narwhale, or sea unicorn, often reaches a length of sixty feet. Increase its dimensions fivefold or even tenfold, then give this cetacean a strength in proportion to its size while enlarging its offensive weapons, and you have the animal we're looking for. It would have the proportions determined by the officers of the Shannon, the instrument needed to perforate the Scotia, and the power to pierce a steamer's hull. -"In essence, the narwhale is armed with a sort of ivory sword, or lance, as certain naturalists have expressed it. It's a king-sized tooth as hard as steel. Some of these teeth have been found buried in the bodies of baleen whales, which the narwhale attacks with invariable success. Others have been wrenched, not without difficulty, from the undersides of vessels that narwhales have pierced clean through, as a gimlet pierces a wine barrel. The museum at the Faculty of Medicine in Paris owns one of these tusks with a length of 2.25 meters and a width at its base of forty-eight centimeters! -"All right then! Imagine this weapon to be ten times stronger and the animal ten times more powerful, launch it at a speed of twenty miles per hour, multiply its mass times its velocity, and you get just the collision we need to cause the specified catastrophe. -"So, until information becomes more abundant, I plump for a sea unicorn of colossal dimensions, no longer armed with a mere lance but with an actual spur, like ironclad frigates or those warships called 'rams,' whose mass and motor power it would possess simultaneously. -"This inexplicable phenomenon is thus explained away--unless it's something else entirely, which, despite everything that has been sighted, studied, explored and experienced, is still possible!" diff --git a/include/pdf/tutorial/calligra.afm b/include/pdf/tutorial/calligra.afm deleted file mode 100644 index 806685eae..000000000 --- a/include/pdf/tutorial/calligra.afm +++ /dev/null @@ -1,275 +0,0 @@ -StartFontMetrics 4.1 -FontName Calligrapher-Regular -FullName Calligrapher Regular -Notice Generated by Fontographer 3.5 -EncodingScheme FontSpecific -FamilyName Calligrapher -Weight Regular -Version (Altsys Fontographer 3.5 5/26/92) -Characters 215 -ItalicAngle 0.0 -Ascender 899 -Descender -234 -UnderlineThickness 20 -UnderlinePosition -200 -IsFixedPitch false -FontBBox -50 -234 1328 899 -StartCharMetrics 256 -C 0 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 1 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 2 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 3 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 4 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 5 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 6 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 7 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 8 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 9 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 10 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 11 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 12 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 13 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 14 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 15 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 16 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 17 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 18 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 19 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 20 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 21 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 22 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 23 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 24 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 25 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 26 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 27 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 28 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 29 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 30 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 31 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 32 ; WX 282 ; N space ; B 67 -16 251 718 ; -C 33 ; WX 324 ; N exclam ; B 67 -16 251 718 ; -C 34 ; WX 405 ; N quotedbl ; B 60 460 353 718 ; -C 35 ; WX 584 ; N numbersign ; B 35 0 549 701 ; -C 36 ; WX 632 ; N dollar ; B 32 -126 595 814 ; -C 37 ; WX 980 ; N percent ; B 35 -16 945 703 ; -C 38 ; WX 776 ; N ampersand ; B 41 -17 811 670 ; -C 39 ; WX 259 ; N quotesingle ; B 72 460 206 718 ; -C 40 ; WX 299 ; N parenleft ; B 57 -119 299 785 ; -C 41 ; WX 299 ; N parenright ; B 0 -119 242 785 ; -C 42 ; WX 377 ; N asterisk ; B 35 407 342 714 ; -C 43 ; WX 600 ; N plus ; B 47 0 553 506 ; -C 44 ; WX 259 ; N comma ; B 35 -67 224 162 ; -C 45 ; WX 432 ; N hyphen ; B 28 249 404 377 ; -C 46 ; WX 254 ; N period ; B 43 -16 227 162 ; -C 47 ; WX 597 ; N slash ; B 7 -14 591 714 ; -C 48 ; WX 529 ; N zero ; B 21 -18 508 583 ; -C 49 ; WX 298 ; N one ; B 8 -15 233 582 ; -C 50 ; WX 451 ; N two ; B 17 -8 430 588 ; -C 51 ; WX 359 ; N three ; B 11 -54 337 582 ; -C 52 ; WX 525 ; N four ; B 18 -20 519 602 ; -C 53 ; WX 423 ; N five ; B 10 -55 420 582 ; -C 54 ; WX 464 ; N six ; B 23 -14 447 589 ; -C 55 ; WX 417 ; N seven ; B 8 -18 415 589 ; -C 56 ; WX 457 ; N eight ; B 19 -16 432 583 ; -C 57 ; WX 479 ; N nine ; B 26 -16 450 588 ; -C 58 ; WX 275 ; N colon ; B 59 -16 242 491 ; -C 59 ; WX 282 ; N semicolon ; B 54 -67 245 491 ; -C 60 ; WX 600 ; N less ; B 47 -8 553 514 ; -C 61 ; WX 600 ; N equal ; B 47 98 553 408 ; -C 62 ; WX 600 ; N greater ; B 47 -8 553 514 ; -C 63 ; WX 501 ; N question ; B 21 -16 473 721 ; -C 64 ; WX 800 ; N at ; B 29 -12 771 730 ; -C 65 ; WX 743 ; N A ; B -23 -14 754 723 ; -C 66 ; WX 636 ; N B ; B -42 -7 608 706 ; -C 67 ; WX 598 ; N C ; B 27 -12 572 712 ; -C 68 ; WX 712 ; N D ; B -42 -11 684 705 ; -C 69 ; WX 608 ; N E ; B -21 0 608 708 ; -C 70 ; WX 562 ; N F ; B -21 -18 584 716 ; -C 71 ; WX 680 ; N G ; B 29 -8 668 714 ; -C 72 ; WX 756 ; N H ; B 70 -17 777 728 ; -C 73 ; WX 308 ; N I ; B 14 -15 238 718 ; -C 74 ; WX 314 ; N J ; B 7 -223 244 727 ; -C 75 ; WX 676 ; N K ; B 14 -16 683 725 ; -C 76 ; WX 552 ; N L ; B 14 -8 580 713 ; -C 77 ; WX 1041 ; N M ; B 42 -17 1017 739 ; -C 78 ; WX 817 ; N N ; B -42 -17 747 736 ; -C 79 ; WX 729 ; N O ; B 32 -16 698 709 ; -C 80 ; WX 569 ; N P ; B -35 -15 570 716 ; -C 81 ; WX 698 ; N Q ; B 27 -201 1328 715 ; -C 82 ; WX 674 ; N R ; B -35 -20 696 712 ; -C 83 ; WX 618 ; N S ; B 31 -16 589 709 ; -C 84 ; WX 673 ; N T ; B -21 -20 702 714 ; -C 85 ; WX 805 ; N U ; B 0 -19 804 722 ; -C 86 ; WX 753 ; N V ; B -28 -20 788 729 ; -C 87 ; WX 1238 ; N W ; B -28 -17 1273 736 ; -C 88 ; WX 716 ; N X ; B 7 -38 709 731 ; -C 89 ; WX 754 ; N Y ; B -35 -17 789 747 ; -C 90 ; WX 599 ; N Z ; B 30 -5 584 748 ; -C 91 ; WX 315 ; N bracketleft ; B 93 -124 322 718 ; -C 92 ; WX 463 ; N backslash ; B -21 -18 484 736 ; -C 93 ; WX 315 ; N bracketright ; B -7 -124 222 718 ; -C 94 ; WX 600 ; N asciicircum ; B 63 266 537 658 ; -C 95 ; WX 547 ; N underscore ; B -7 -198 554 -163 ; -C 96 ; WX 278 ; N grave ; B -1 541 214 693 ; -C 97 ; WX 581 ; N a ; B 21 -16 581 494 ; -C 98 ; WX 564 ; N b ; B -24 -17 543 793 ; -C 99 ; WX 440 ; N c ; B 21 -17 422 490 ; -C 100 ; WX 571 ; N d ; B 0 -15 550 659 ; -C 101 ; WX 450 ; N e ; B 28 -23 428 493 ; -C 102 ; WX 347 ; N f ; B -35 -14 474 785 ; -C 103 ; WX 628 ; N g ; B 19 -219 612 496 ; -C 104 ; WX 611 ; N h ; B -29 -18 569 785 ; -C 105 ; WX 283 ; N i ; B -14 -15 241 679 ; -C 106 ; WX 283 ; N j ; B -14 -234 241 679 ; -C 107 ; WX 560 ; N k ; B -24 -15 582 789 ; -C 108 ; WX 252 ; N l ; B -28 -15 210 789 ; -C 109 ; WX 976 ; N m ; B -21 -16 927 494 ; -C 110 ; WX 595 ; N n ; B -28 -15 574 493 ; -C 111 ; WX 508 ; N o ; B 27 -17 485 490 ; -C 112 ; WX 549 ; N p ; B -28 -216 526 496 ; -C 113 ; WX 540 ; N q ; B 28 -219 491 493 ; -C 114 ; WX 395 ; N r ; B -21 -19 430 492 ; -C 115 ; WX 441 ; N s ; B 34 -15 413 493 ; -C 116 ; WX 307 ; N t ; B -21 -16 378 621 ; -C 117 ; WX 614 ; N u ; B -14 -18 558 501 ; -C 118 ; WX 556 ; N v ; B -28 -20 569 483 ; -C 119 ; WX 915 ; N w ; B -28 -17 928 495 ; -C 120 ; WX 559 ; N x ; B 14 -17 546 500 ; -C 121 ; WX 597 ; N y ; B -21 -227 541 500 ; -C 122 ; WX 452 ; N z ; B 28 -5 442 515 ; -C 123 ; WX 315 ; N braceleft ; B 6 -118 309 718 ; -C 124 ; WX 222 ; N bar ; B 63 -18 159 730 ; -C 125 ; WX 315 ; N braceright ; B 6 -118 309 718 ; -C 126 ; WX 600 ; N asciitilde ; B 69 166 531 340 ; -C 127 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 128 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 129 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 130 ; WX 0 ; N quotesinglbase ; B -23 -14 754 877 ; -C 131 ; WX 0 ; N florin ; B 0 -19 804 854 ; -C 132 ; WX 0 ; N quotedblbase ; B -23 -14 754 877 ; -C 133 ; WX 780 ; N ellipsis ; B 43 -16 747 162 ; -C 134 ; WX 0 ; N dagger ; B 27 -122 437 592 ; -C 135 ; WX 0 ; N daggerdbl ; B 43 278 227 456 ; -C 136 ; WX 278 ; N circumflex ; B -14 557 292 677 ; -C 137 ; WX 0 ; N perthousand ; B -23 -14 754 877 ; -C 138 ; WX 0 ; N Scaron ; B 0 0 0 100 ; -C 139 ; WX 0 ; N guilsinglleft ; B 43 278 227 456 ; -C 140 ; WX 1064 ; N OE ; B 32 -16 1055 709 ; -C 141 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 142 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 143 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 144 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 145 ; WX 259 ; N quoteleft ; B 35 489 224 717 ; -C 146 ; WX 259 ; N quoteright ; B 35 489 224 717 ; -C 147 ; WX 470 ; N quotedblleft ; B 35 489 443 717 ; -C 148 ; WX 470 ; N quotedblright ; B 35 487 443 717 ; -C 149 ; WX 500 ; N bullet ; B 70 179 430 539 ; -C 150 ; WX 300 ; N endash ; B 0 245 300 350 ; -C 151 ; WX 600 ; N emdash ; B 0 245 600 350 ; -C 152 ; WX 278 ; N tilde ; B -44 563 326 689 ; -C 153 ; WX 990 ; N trademark ; B 62 306 928 718 ; -C 154 ; WX 0 ; N scaron ; B 0 0 0 100 ; -C 155 ; WX 0 ; N guilsinglright ; B 43 278 227 456 ; -C 156 ; WX 790 ; N oe ; B 27 -23 764 493 ; -C 157 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 158 ; WX 800 ; N .notdef ; B 50 0 750 800 ; -C 159 ; WX 754 ; N Ydieresis ; B -35 -17 789 882 ; -C 160 ; WX 282 ; N nbspace ; B -23 -14 754 893 ; -C 161 ; WX 324 ; N exclamdown ; B 69 -203 253 531 ; -C 162 ; WX 450 ; N cent ; B 27 -122 437 592 ; -C 163 ; WX 640 ; N sterling ; B 0 -9 619 716 ; -C 164 ; WX 518 ; N currency ; B 3 72 515 586 ; -C 165 ; WX 603 ; N yen ; B -28 -65 631 747 ; -C 166 ; WX 0 ; N brokenbar ; B 0 0 0 100 ; -C 167 ; WX 519 ; N section ; B -50 -216 524 762 ; -C 168 ; WX 254 ; N dieresis ; B -20 554 308 682 ; -C 169 ; WX 800 ; N copyright ; B 29 -12 771 730 ; -C 170 ; WX 349 ; N ordfeminine ; B 13 385 349 717 ; -C 171 ; WX 0 ; N guillemotleft ; B 43 -16 747 162 ; -C 172 ; WX 0 ; N logicalnot ; B 30 0 730 700 ; -C 173 ; WX 432 ; N hyphen ; B 28 249 404 377 ; -C 174 ; WX 800 ; N registered ; B 29 -12 771 730 ; -C 175 ; WX 278 ; N macron ; B -47 584 325 665 ; -C 176 ; WX 0 ; N degree ; B 27 -122 437 592 ; -C 177 ; WX 0 ; N plusminus ; B 29 -8 668 877 ; -C 178 ; WX 0 ; N twosuperior ; B 0 0 0 100 ; -C 179 ; WX 0 ; N threesuperior ; B 0 0 0 100 ; -C 180 ; WX 278 ; N acute ; B 49 536 279 693 ; -C 181 ; WX 614 ; N mu ; B -14 -231 558 501 ; -C 182 ; WX 0 ; N paragraph ; B -35 -15 668 785 ; -C 183 ; WX 254 ; N periodcentered ; B 43 278 227 456 ; -C 184 ; WX 278 ; N cedilla ; B -8 -216 231 6 ; -C 185 ; WX 0 ; N onesuperior ; B 0 0 0 100 ; -C 186 ; WX 305 ; N ordmasculine ; B 16 373 291 702 ; -C 187 ; WX 0 ; N guillemotright ; B 43 -16 747 162 ; -C 188 ; WX 0 ; N onequarter ; B 0 0 0 100 ; -C 189 ; WX 0 ; N onehalf ; B 0 0 0 100 ; -C 190 ; WX 0 ; N threequarters ; B 0 0 0 100 ; -C 191 ; WX 501 ; N questiondown ; B 15 -196 467 541 ; -C 192 ; WX 743 ; N Agrave ; B -23 -14 754 893 ; -C 193 ; WX 743 ; N Aacute ; B -23 -14 754 893 ; -C 194 ; WX 743 ; N Acircumflex ; B -23 -14 754 877 ; -C 195 ; WX 743 ; N Atilde ; B -23 -14 754 889 ; -C 196 ; WX 743 ; N Adieresis ; B -23 -14 754 882 ; -C 197 ; WX 743 ; N Aring ; B -23 -14 754 899 ; -C 198 ; WX 1060 ; N AE ; B -29 -14 1053 708 ; -C 199 ; WX 598 ; N Ccedilla ; B 27 -183 572 712 ; -C 200 ; WX 608 ; N Egrave ; B -21 0 608 893 ; -C 201 ; WX 608 ; N Eacute ; B -21 0 608 893 ; -C 202 ; WX 608 ; N Ecircumflex ; B -21 0 608 877 ; -C 203 ; WX 608 ; N Edieresis ; B -21 0 608 882 ; -C 204 ; WX 308 ; N Igrave ; B 14 -15 264 893 ; -C 205 ; WX 308 ; N Iacute ; B 14 -15 274 893 ; -C 206 ; WX 308 ; N Icircumflex ; B 1 -15 307 877 ; -C 207 ; WX 308 ; N Idieresis ; B -15 -15 313 882 ; -C 208 ; WX 0 ; N Eth ; B 0 0 0 100 ; -C 209 ; WX 817 ; N Ntilde ; B -42 -17 747 889 ; -C 210 ; WX 729 ; N Ograve ; B 32 -16 698 893 ; -C 211 ; WX 729 ; N Oacute ; B 32 -16 698 893 ; -C 212 ; WX 729 ; N Ocircumflex ; B 32 -16 698 877 ; -C 213 ; WX 729 ; N Otilde ; B 32 -16 698 889 ; -C 214 ; WX 729 ; N Odieresis ; B 32 -16 698 882 ; -C 215 ; WX 0 ; N multiply ; B 0 0 0 100 ; -C 216 ; WX 729 ; N Oslash ; B 14 -24 724 709 ; -C 217 ; WX 805 ; N Ugrave ; B 0 -19 804 893 ; -C 218 ; WX 805 ; N Uacute ; B 0 -19 804 893 ; -C 219 ; WX 805 ; N Ucircumflex ; B 0 -19 804 877 ; -C 220 ; WX 805 ; N Udieresis ; B 0 -19 804 882 ; -C 221 ; WX 0 ; N _235 ; B 0 0 0 100 ; -C 222 ; WX 0 ; N Thorn ; B 0 0 0 100 ; -C 223 ; WX 688 ; N germandbls ; B -35 -15 668 785 ; -C 224 ; WX 581 ; N agrave ; B 21 -16 581 693 ; -C 225 ; WX 581 ; N aacute ; B 21 -16 581 693 ; -C 226 ; WX 581 ; N acircumflex ; B 21 -16 581 677 ; -C 227 ; WX 581 ; N atilde ; B 21 -16 581 689 ; -C 228 ; WX 581 ; N adieresis ; B 21 -16 581 682 ; -C 229 ; WX 581 ; N aring ; B 21 -16 581 734 ; -C 230 ; WX 792 ; N ae ; B 21 -23 773 494 ; -C 231 ; WX 440 ; N ccedilla ; B 21 -183 422 490 ; -C 232 ; WX 450 ; N egrave ; B 28 -23 428 693 ; -C 233 ; WX 450 ; N eacute ; B 28 -23 428 693 ; -C 234 ; WX 450 ; N ecircumflex ; B 28 -23 432 677 ; -C 235 ; WX 450 ; N edieresis ; B 28 -23 428 682 ; -C 236 ; WX 283 ; N igrave ; B -14 -15 244 693 ; -C 237 ; WX 283 ; N iacute ; B -14 -15 269 693 ; -C 238 ; WX 283 ; N icircumflex ; B -14 -15 297 677 ; -C 239 ; WX 283 ; N idieresis ; B -25 -15 303 682 ; -C 240 ; WX 0 ; N Yacute ; B 0 0 0 100 ; -C 241 ; WX 595 ; N ntilde ; B -28 -15 574 689 ; -C 242 ; WX 508 ; N ograve ; B 27 -17 485 693 ; -C 243 ; WX 508 ; N oacute ; B 27 -17 485 693 ; -C 244 ; WX 508 ; N ocircumflex ; B 27 -17 485 677 ; -C 245 ; WX 508 ; N otilde ; B 27 -17 485 689 ; -C 246 ; WX 508 ; N odieresis ; B 27 -17 485 682 ; -C 247 ; WX 0 ; N divide ; B 35 0 760 727 ; -C 248 ; WX 508 ; N oslash ; B -8 -54 496 589 ; -C 249 ; WX 614 ; N ugrave ; B -14 -18 558 693 ; -C 250 ; WX 614 ; N uacute ; B -14 -18 558 693 ; -C 251 ; WX 614 ; N ucircumflex ; B -14 -18 558 677 ; -C 252 ; WX 614 ; N udieresis ; B -14 -18 558 682 ; -C 253 ; WX 0 ; N yacute ; B 0 0 0 100 ; -C 254 ; WX 0 ; N thorn ; B 0 0 0 100 ; -C 255 ; WX 597 ; N ydieresis ; B -21 -227 541 682 ; -EndCharMetrics -EndFontMetrics diff --git a/include/pdf/tutorial/calligra.php b/include/pdf/tutorial/calligra.php deleted file mode 100644 index 1af82ac82..000000000 --- a/include/pdf/tutorial/calligra.php +++ /dev/null @@ -1,24 +0,0 @@ -899,'Descent'=>-234,'CapHeight'=>731,'Flags'=>32,'FontBBox'=>'[-50 -234 1328 899]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>800); -$up=-200; -$ut=20; -$cw=array( - chr(0)=>800,chr(1)=>800,chr(2)=>800,chr(3)=>800,chr(4)=>800,chr(5)=>800,chr(6)=>800,chr(7)=>800,chr(8)=>800,chr(9)=>800,chr(10)=>800,chr(11)=>800,chr(12)=>800,chr(13)=>800,chr(14)=>800,chr(15)=>800,chr(16)=>800,chr(17)=>800,chr(18)=>800,chr(19)=>800,chr(20)=>800,chr(21)=>800, - chr(22)=>800,chr(23)=>800,chr(24)=>800,chr(25)=>800,chr(26)=>800,chr(27)=>800,chr(28)=>800,chr(29)=>800,chr(30)=>800,chr(31)=>800,' '=>282,'!'=>324,'"'=>405,'#'=>584,'$'=>632,'%'=>980,'&'=>776,'\''=>259,'('=>299,')'=>299,'*'=>377,'+'=>600, - ','=>259,'-'=>432,'.'=>254,'/'=>597,'0'=>529,'1'=>298,'2'=>451,'3'=>359,'4'=>525,'5'=>423,'6'=>464,'7'=>417,'8'=>457,'9'=>479,':'=>275,';'=>282,'<'=>600,'='=>600,'>'=>600,'?'=>501,'@'=>800,'A'=>743, - 'B'=>636,'C'=>598,'D'=>712,'E'=>608,'F'=>562,'G'=>680,'H'=>756,'I'=>308,'J'=>314,'K'=>676,'L'=>552,'M'=>1041,'N'=>817,'O'=>729,'P'=>569,'Q'=>698,'R'=>674,'S'=>618,'T'=>673,'U'=>805,'V'=>753,'W'=>1238, - 'X'=>716,'Y'=>754,'Z'=>599,'['=>315,'\\'=>463,']'=>315,'^'=>600,'_'=>547,'`'=>278,'a'=>581,'b'=>564,'c'=>440,'d'=>571,'e'=>450,'f'=>347,'g'=>628,'h'=>611,'i'=>283,'j'=>283,'k'=>560,'l'=>252,'m'=>976, - 'n'=>595,'o'=>508,'p'=>549,'q'=>540,'r'=>395,'s'=>441,'t'=>307,'u'=>614,'v'=>556,'w'=>915,'x'=>559,'y'=>597,'z'=>452,'{'=>315,'|'=>222,'}'=>315,'~'=>600,chr(127)=>800,chr(128)=>800,chr(129)=>800,chr(130)=>0,chr(131)=>0, - chr(132)=>0,chr(133)=>780,chr(134)=>0,chr(135)=>0,chr(136)=>278,chr(137)=>0,chr(138)=>0,chr(139)=>0,chr(140)=>1064,chr(141)=>800,chr(142)=>800,chr(143)=>800,chr(144)=>800,chr(145)=>259,chr(146)=>259,chr(147)=>470,chr(148)=>470,chr(149)=>500,chr(150)=>300,chr(151)=>600,chr(152)=>278,chr(153)=>990, - chr(154)=>0,chr(155)=>0,chr(156)=>790,chr(157)=>800,chr(158)=>800,chr(159)=>754,chr(160)=>282,chr(161)=>324,chr(162)=>450,chr(163)=>640,chr(164)=>518,chr(165)=>603,chr(166)=>0,chr(167)=>519,chr(168)=>254,chr(169)=>800,chr(170)=>349,chr(171)=>0,chr(172)=>0,chr(173)=>432,chr(174)=>800,chr(175)=>278, - chr(176)=>0,chr(177)=>0,chr(178)=>0,chr(179)=>0,chr(180)=>278,chr(181)=>614,chr(182)=>0,chr(183)=>254,chr(184)=>278,chr(185)=>0,chr(186)=>305,chr(187)=>0,chr(188)=>0,chr(189)=>0,chr(190)=>0,chr(191)=>501,chr(192)=>743,chr(193)=>743,chr(194)=>743,chr(195)=>743,chr(196)=>743,chr(197)=>743, - chr(198)=>1060,chr(199)=>598,chr(200)=>608,chr(201)=>608,chr(202)=>608,chr(203)=>608,chr(204)=>308,chr(205)=>308,chr(206)=>308,chr(207)=>308,chr(208)=>0,chr(209)=>817,chr(210)=>729,chr(211)=>729,chr(212)=>729,chr(213)=>729,chr(214)=>729,chr(215)=>0,chr(216)=>729,chr(217)=>805,chr(218)=>805,chr(219)=>805, - chr(220)=>805,chr(221)=>0,chr(222)=>0,chr(223)=>688,chr(224)=>581,chr(225)=>581,chr(226)=>581,chr(227)=>581,chr(228)=>581,chr(229)=>581,chr(230)=>792,chr(231)=>440,chr(232)=>450,chr(233)=>450,chr(234)=>450,chr(235)=>450,chr(236)=>283,chr(237)=>283,chr(238)=>283,chr(239)=>283,chr(240)=>800,chr(241)=>595, - chr(242)=>508,chr(243)=>508,chr(244)=>508,chr(245)=>508,chr(246)=>508,chr(247)=>0,chr(248)=>508,chr(249)=>614,chr(250)=>614,chr(251)=>614,chr(252)=>614,chr(253)=>0,chr(254)=>0,chr(255)=>597); -$enc='cp1252'; -$diff=''; -$file='calligra.z'; -$originalsize=40120; -?> diff --git a/include/pdf/tutorial/calligra.ttf b/include/pdf/tutorial/calligra.ttf deleted file mode 100644 index 9713c468ca29f5bfcecb65d96e52711aaa5f50e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40120 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 EJEXL@qyPW_ diff --git a/include/pdf/tutorial/calligra.z b/include/pdf/tutorial/calligra.z deleted file mode 100644 index 1c0bebd20b3f68fe84a44520cc93c7cee39f2792..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25604 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 jkH^DoB9A@c#fz}Vaf2UWPe| - - -Tutorials - - - -

Tutorials

-The different examples rapidly show how to use FPDF. You will find all main features explained.

-
Tutorial 1: Minimal example
-Tutorial 2: Header, footer, page break and image
-Tutorial 3: Line breaks and colors
-Tutorial 4: Multi-columns
-Tutorial 5: Tables
-Tutorial 6: Links and flowing text
-Tutorial 7: Adding new fonts and encoding support
- - diff --git a/include/pdf/tutorial/logo.png b/include/pdf/tutorial/logo.png deleted file mode 100644 index 284a0071c850b5a2f1ba86f16775c5c0da9fe082..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2373 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 IayK9PFK}2WsQ>@~ diff --git a/include/pdf/tutorial/makefont.php b/include/pdf/tutorial/makefont.php deleted file mode 100644 index 3773429bd..000000000 --- a/include/pdf/tutorial/makefont.php +++ /dev/null @@ -1,6 +0,0 @@ - diff --git a/include/pdf/tutorial/tuto1.htm b/include/pdf/tutorial/tuto1.htm deleted file mode 100644 index 34f0480b7..000000000 --- a/include/pdf/tutorial/tuto1.htm +++ /dev/null @@ -1,92 +0,0 @@ - - - -Minimal example - - - -

Minimal example

-Let's start with the classic example: -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?> -
-

- -The first line defines where the font directory resides, relative to the current directory.
-Then, after including the library file, we create an FPDF object. -The FPDF() constructor is used here with the default values: pages are in A4 portrait and -the measure unit is millimeter. It could have been specified explicitly with: -
-
-
- -$pdf=new FPDF('P','mm','A4');
-
-

-It is possible to use landscape (L), other page formats (such as Letter and -Legal) and measure units (pt, cm, in). -
-
-There is no page for the moment, so we have to add one with AddPage(). The origin -is at the upper-left corner and the current position is by default placed at 1 cm from the -borders; the margins can be changed with SetMargins(). -
-
-Before we can print text, it is mandatory to select a font with SetFont(), otherwise the -document would be invalid. We choose Arial bold 16: -
-
-
- -$pdf->SetFont('Arial','B',16);
-
-

-We could have specified italics with I, underlined with U or a regular font with an empty string -(or any combination). Note that the font size is given in points, not millimeters (or another -user unit); it is the only exception. The other standard fonts are Times, Courier, Symbol and -ZapfDingbats. -
-
-We can now print a cell with Cell(). A cell is a rectangular area, possibly framed, -which contains some text. It is output at the current position. We specify its dimensions, -its text (centered or aligned), if borders should be drawn, and where the current position -moves after it (to the right, below or to the beginning of the next line). To add a frame, we would do this: -
-
-
- -$pdf->Cell(40,10,'Hello World !',1);
-
-

-To add a new cell next to it with centered text and go to the next line, we would do: -
-
-
- -$pdf->Cell(60,10,'Powered by FPDF.',0,1,'C');
-
-

-Remark : the line break can also be done with Ln(). This method allows to specify -in addition the height of the break. -
-
-Finally, the document is closed and sent to the browser with Output(). We could have saved -it in a file by passing the desired file name. -
-
-Caution: in case when the PDF is sent to the browser, nothing else must be output, not before -nor after (the least space or carriage return matters). If you send some data before, you will -get the error message: "Some data has already been output to browser, can't send PDF file". If -you send after, your browser may display a blank page. - - diff --git a/include/pdf/tutorial/tuto1.php b/include/pdf/tutorial/tuto1.php deleted file mode 100644 index 14b836242..000000000 --- a/include/pdf/tutorial/tuto1.php +++ /dev/null @@ -1,10 +0,0 @@ -AddPage(); -$pdf->SetFont('Arial','B',16); -$pdf->Cell(40,10,'Hello World!'); -$pdf->Output(); -?> diff --git a/include/pdf/tutorial/tuto2.htm b/include/pdf/tutorial/tuto2.htm deleted file mode 100644 index 22e052d00..000000000 --- a/include/pdf/tutorial/tuto2.htm +++ /dev/null @@ -1,50 +0,0 @@ - - - -Header, footer, page break and image - - - -

Header, footer, page break and image

-Here is a two page example with header, footer and logo: -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

class
PDF extends FPDF
{
//Page header
function Header()
{
    
//Logo
    
$this->Image('logo_pb.png',10,8,33);
    
//Arial bold 15
    
$this->SetFont('Arial','B',15);
    
//Move to the right
    
$this->Cell(80);
    
//Title
    
$this->Cell(30,10,'Title',1,0,'C');
    
//Line break
    
$this->Ln(20);
}

//Page footer
function Footer()
{
    
//Position at 1.5 cm from bottom
    
$this->SetY(-15);
    
//Arial italic 8
    
$this->SetFont('Arial','I',8);
    
//Page number
    
$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}
}

//Instanciation of inherited class
$pdf=new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('Times','',12);
for(
$i=1;$i<=40;$i++)
    
$pdf->Cell(0,10,'Printing line number '.$i,0,1);
$pdf->Output();
?> -
-

- -This example makes use of the Header() and Footer() methods to process page headers and -footers. They are called automatically. They already exist in the FPDF class but do nothing, -therefore we have to extend the class and override them. -
-
-The logo is printed with the Image() method by specifying its upper-left corner and -its width. The height is calculated automatically to respect the image proportions. -
-
-To print the page number, a null value is passed as the cell width. It means that the cell -should extend up to the right margin of the page; it is handy to center text. The current page -number is returned by the PageNo() method; as for the total number of pages, it is obtained -by means of the special value {nb} which will be substituted on document closure -(provided you first called AliasNbPages()). -
-Note the use of the SetY() method which allows to set position at an absolute location in -the page, starting from the top or the bottom. -
-
-Another interesting feature is used here: the automatic page breaking. As soon as a cell would -cross a limit in the page (at 2 centimeters from the bottom by default), a break is performed -and the font restored. Although the header and footer select their own font (Arial), the body -continues with Times. This mechanism of automatic restoration also applies to colors and line -width. The limit which triggers page breaks can be set with SetAutoPageBreak(). - - diff --git a/include/pdf/tutorial/tuto2.php b/include/pdf/tutorial/tuto2.php deleted file mode 100644 index 1bb8ddd05..000000000 --- a/include/pdf/tutorial/tuto2.php +++ /dev/null @@ -1,42 +0,0 @@ -Image('logo_pb.png',10,8,33); - //Arial bold 15 - $this->SetFont('Arial','B',15); - //Move to the right - $this->Cell(80); - //Title - $this->Cell(30,10,'Title',1,0,'C'); - //Line break - $this->Ln(20); -} - -//Page footer -function Footer() -{ - //Position at 1.5 cm from bottom - $this->SetY(-15); - //Arial italic 8 - $this->SetFont('Arial','I',8); - //Page number - $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C'); -} -} - -//Instanciation of inherited class -$pdf=new PDF(); -$pdf->AliasNbPages(); -$pdf->AddPage(); -$pdf->SetFont('Times','',12); -for($i=1;$i<=40;$i++) - $pdf->Cell(0,10,'Printing line number '.$i,0,1); -$pdf->Output(); -?> diff --git a/include/pdf/tutorial/tuto3.htm b/include/pdf/tutorial/tuto3.htm deleted file mode 100644 index 41e434c17..000000000 --- a/include/pdf/tutorial/tuto3.htm +++ /dev/null @@ -1,43 +0,0 @@ - - - -Line breaks and colors - - - -

Line breaks and colors

-Let's continue with an example which prints justified paragraphs. It also illustrates the use -of colors. -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

class
PDF extends FPDF
{
function
Header()
{
    global
$title;

    
//Arial bold 15
    
$this->SetFont('Arial','B',15);
    
//Calculate width of title and position
    
$w=$this->GetStringWidth($title)+6;
    
$this->SetX((210-$w)/2);
    
//Colors of frame, background and text
    
$this->SetDrawColor(0,80,180);
    
$this->SetFillColor(230,230,0);
    
$this->SetTextColor(220,50,50);
    
//Thickness of frame (1 mm)
    
$this->SetLineWidth(1);
    
//Title
    
$this->Cell($w,9,$title,1,1,'C',1);
    
//Line break
    
$this->Ln(10);
}

function
Footer()
{
    
//Position at 1.5 cm from bottom
    
$this->SetY(-15);
    
//Arial italic 8
    
$this->SetFont('Arial','I',8);
    
//Text color in gray
    
$this->SetTextColor(128);
    
//Page number
    
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}

function
ChapterTitle($num,$label)
{
    
//Arial 12
    
$this->SetFont('Arial','',12);
    
//Background color
    
$this->SetFillColor(200,220,255);
    
//Title
    
$this->Cell(0,6,"Chapter $num : $label",0,1,'L',1);
    
//Line break
    
$this->Ln(4);
}

function
ChapterBody($file)
{
    
//Read text file
    
$f=fopen($file,'r');
    
$txt=fread($f,filesize($file));
    
fclose($f);
    
//Times 12
    
$this->SetFont('Times','',12);
    
//Output justified text
    
$this->MultiCell(0,5,$txt);
    
//Line break
    
$this->Ln();
    
//Mention in italics
    
$this->SetFont('','I');
    
$this->Cell(0,5,'(end of excerpt)');
}

function
PrintChapter($num,$title,$file)
{
    
$this->AddPage();
    
$this->ChapterTitle($num,$title);
    
$this->ChapterBody($file);
}
}

$pdf=new PDF();
$title='20000 Leagues Under the Seas';
$pdf->SetTitle($title);
$pdf->SetAuthor('Jules Verne');
$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt');
$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt');
$pdf->Output();
?> -
-

- -The GetStringWidth() method allows to determine the length of a string in the current font, -which is used here to calculate the position and the width of the frame surrounding the title. -Then colors are set (via SetDrawColor(), SetFillColor() and SetTextColor()) and the -thickness of the line is set to 1 mm (against 0.2 by default) with SetLineWidth(). Finally, -we output the cell (the last parameter to 1 indicates that the background must be filled). -
-
-The method used to print the paragraphs is MultiCell(). Each time a line reaches the -right extremity of the cell or a carriage-return character is met, a line break is issued -and a new cell automatically created under the current one. Text is justified by default. -
-
-Two document properties are defined: title (SetTitle()) and author (SetAuthor()). -Properties can be viewed by two means. First is open the document directly with Acrobat Reader, -go to the File menu, Document info, General. Second, also available from the plug-in, is click -on the triangle just above the right scrollbar and choose Document info. - - diff --git a/include/pdf/tutorial/tuto3.php b/include/pdf/tutorial/tuto3.php deleted file mode 100644 index f2c38ff99..000000000 --- a/include/pdf/tutorial/tuto3.php +++ /dev/null @@ -1,84 +0,0 @@ -SetFont('Arial','B',15); - //Calculate width of title and position - $w=$this->GetStringWidth($title)+6; - $this->SetX((210-$w)/2); - //Colors of frame, background and text - $this->SetDrawColor(0,80,180); - $this->SetFillColor(230,230,0); - $this->SetTextColor(220,50,50); - //Thickness of frame (1 mm) - $this->SetLineWidth(1); - //Title - $this->Cell($w,9,$title,1,1,'C',1); - //Line break - $this->Ln(10); -} - -function Footer() -{ - //Position at 1.5 cm from bottom - $this->SetY(-15); - //Arial italic 8 - $this->SetFont('Arial','I',8); - //Text color in gray - $this->SetTextColor(128); - //Page number - $this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C'); -} - -function ChapterTitle($num,$label) -{ - //Arial 12 - $this->SetFont('Arial','',12); - //Background color - $this->SetFillColor(200,220,255); - //Title - $this->Cell(0,6,"Chapter $num : $label",0,1,'L',1); - //Line break - $this->Ln(4); -} - -function ChapterBody($file) -{ - //Read text file - $f=fopen($file,'r'); - $txt=fread($f,filesize($file)); - fclose($f); - //Times 12 - $this->SetFont('Times','',12); - //Output justified text - $this->MultiCell(0,5,$txt); - //Line break - $this->Ln(); - //Mention in italics - $this->SetFont('','I'); - $this->Cell(0,5,'(end of excerpt)'); -} - -function PrintChapter($num,$title,$file) -{ - $this->AddPage(); - $this->ChapterTitle($num,$title); - $this->ChapterBody($file); -} -} - -$pdf=new PDF(); -$title='20000 Leagues Under the Seas'; -$pdf->SetTitle($title); -$pdf->SetAuthor('Jules Verne'); -$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt'); -$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt'); -$pdf->Output(); -?> diff --git a/include/pdf/tutorial/tuto4.htm b/include/pdf/tutorial/tuto4.htm deleted file mode 100644 index 5d7ae86eb..000000000 --- a/include/pdf/tutorial/tuto4.htm +++ /dev/null @@ -1,34 +0,0 @@ - - - -Multi-columns - - - -

Multi-columns

-This example is a variant of the previous one showing how to lay the text across multiple -columns. -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

class
PDF extends FPDF
{
//Current column
var $col=0;
//Ordinate of column start
var $y0;

function
Header()
{
    
//Page header
    
global $title;

    
$this->SetFont('Arial','B',15);
    
$w=$this->GetStringWidth($title)+6;
    
$this->SetX((210-$w)/2);
    
$this->SetDrawColor(0,80,180);
    
$this->SetFillColor(230,230,0);
    
$this->SetTextColor(220,50,50);
    
$this->SetLineWidth(1);
    
$this->Cell($w,9,$title,1,1,'C',1);
    
$this->Ln(10);
    
//Save ordinate
    
$this->y0=$this->GetY();
}

function
Footer()
{
    
//Page footer
    
$this->SetY(-15);
    
$this->SetFont('Arial','I',8);
    
$this->SetTextColor(128);
    
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}

function
SetCol($col)
{
    
//Set position at a given column
    
$this->col=$col;
    
$x=10+$col*65;
    
$this->SetLeftMargin($x);
    
$this->SetX($x);
}

function
AcceptPageBreak()
{
    
//Method accepting or not automatic page break
    
if($this->col<2)
    {
        
//Go to next column
        
$this->SetCol($this->col+1);
        
//Set ordinate to top
        
$this->SetY($this->y0);
        
//Keep on page
        
return false;
    }
    else
    {
        
//Go back to first column
        
$this->SetCol(0);
        
//Page break
        
return true;
    }
}

function
ChapterTitle($num,$label)
{
    
//Title
    
$this->SetFont('Arial','',12);
    
$this->SetFillColor(200,220,255);
    
$this->Cell(0,6,"Chapter  $num : $label",0,1,'L',1);
    
$this->Ln(4);
    
//Save ordinate
    
$this->y0=$this->GetY();
}

function
ChapterBody($fichier)
{
    
//Read text file
    
$f=fopen($fichier,'r');
    
$txt=fread($f,filesize($fichier));
    
fclose($f);
    
//Font
    
$this->SetFont('Times','',12);
    
//Output text in a 6 cm width column
    
$this->MultiCell(60,5,$txt);
    
$this->Ln();
    
//Mention
    
$this->SetFont('','I');
    
$this->Cell(0,5,'(end of excerpt)');
    
//Go back to first column
    
$this->SetCol(0);
}

function
PrintChapter($num,$title,$file)
{
    
//Add chapter
    
$this->AddPage();
    
$this->ChapterTitle($num,$title);
    
$this->ChapterBody($file);
}
}

$pdf=new PDF();
$title='20000 Leagues Under the Seas';
$pdf->SetTitle($title);
$pdf->SetAuthor('Jules Verne');
$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt');
$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt');
$pdf->Output();
?> -
-

- -The key method used is AcceptPageBreak(). It allows to accept or not an automatic page -break. By refusing it and altering the margin and current position, the desired column layout -is achieved. -
-For the rest, not much change; two properties have been added to the class to save the current -column number and the position where columns begin, and the MultiCell() call specifies a -6 centimeter width. - - diff --git a/include/pdf/tutorial/tuto4.php b/include/pdf/tutorial/tuto4.php deleted file mode 100644 index 41d6ff6fb..000000000 --- a/include/pdf/tutorial/tuto4.php +++ /dev/null @@ -1,114 +0,0 @@ -SetFont('Arial','B',15); - $w=$this->GetStringWidth($title)+6; - $this->SetX((210-$w)/2); - $this->SetDrawColor(0,80,180); - $this->SetFillColor(230,230,0); - $this->SetTextColor(220,50,50); - $this->SetLineWidth(1); - $this->Cell($w,9,$title,1,1,'C',1); - $this->Ln(10); - //Save ordinate - $this->y0=$this->GetY(); -} - -function Footer() -{ - //Page footer - $this->SetY(-15); - $this->SetFont('Arial','I',8); - $this->SetTextColor(128); - $this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C'); -} - -function SetCol($col) -{ - //Set position at a given column - $this->col=$col; - $x=10+$col*65; - $this->SetLeftMargin($x); - $this->SetX($x); -} - -function AcceptPageBreak() -{ - //Method accepting or not automatic page break - if($this->col<2) - { - //Go to next column - $this->SetCol($this->col+1); - //Set ordinate to top - $this->SetY($this->y0); - //Keep on page - return false; - } - else - { - //Go back to first column - $this->SetCol(0); - //Page break - return true; - } -} - -function ChapterTitle($num,$label) -{ - //Title - $this->SetFont('Arial','',12); - $this->SetFillColor(200,220,255); - $this->Cell(0,6,"Chapter $num : $label",0,1,'L',1); - $this->Ln(4); - //Save ordinate - $this->y0=$this->GetY(); -} - -function ChapterBody($fichier) -{ - //Read text file - $f=fopen($fichier,'r'); - $txt=fread($f,filesize($fichier)); - fclose($f); - //Font - $this->SetFont('Times','',12); - //Output text in a 6 cm width column - $this->MultiCell(60,5,$txt); - $this->Ln(); - //Mention - $this->SetFont('','I'); - $this->Cell(0,5,'(end of excerpt)'); - //Go back to first column - $this->SetCol(0); -} - -function PrintChapter($num,$title,$file) -{ - //Add chapter - $this->AddPage(); - $this->ChapterTitle($num,$title); - $this->ChapterBody($file); -} -} - -$pdf=new PDF(); -$title='20000 Leagues Under the Seas'; -$pdf->SetTitle($title); -$pdf->SetAuthor('Jules Verne'); -$pdf->PrintChapter(1,'A RUNAWAY REEF','20k_c1.txt'); -$pdf->PrintChapter(2,'THE PROS AND CONS','20k_c2.txt'); -$pdf->Output(); -?> diff --git a/include/pdf/tutorial/tuto5.htm b/include/pdf/tutorial/tuto5.htm deleted file mode 100644 index b0263003e..000000000 --- a/include/pdf/tutorial/tuto5.htm +++ /dev/null @@ -1,43 +0,0 @@ - - - -Tables - - - -

Tables

-This tutorial shows how to make tables easily. -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

class
PDF extends FPDF
{
//Load data
function LoadData($file)
{
    
//Read file lines
    
$lines=file($file);
    
$data=array();
    foreach(
$lines as $line)
        
$data[]=explode(';',chop($line));
    return
$data;
}

//Simple table
function BasicTable($header,$data)
{
    
//Header
    
foreach($header as $col)
        
$this->Cell(40,7,$col,1);
    
$this->Ln();
    
//Data
    
foreach($data as $row)
    {
        foreach(
$row as $col)
            
$this->Cell(40,6,$col,1);
        
$this->Ln();
    }
}

//Better table
function ImprovedTable($header,$data)
{
    
//Column widths
    
$w=array(40,35,40,45);
    
//Header
    
for($i=0;$i<count($header);$i++)
        
$this->Cell($w[$i],7,$header[$i],1,0,'C');
    
$this->Ln();
    
//Data
    
foreach($data as $row)
    {
        
$this->Cell($w[0],6,$row[0],'LR');
        
$this->Cell($w[1],6,$row[1],'LR');
        
$this->Cell($w[2],6,number_format($row[2]),'LR',0,'R');
        
$this->Cell($w[3],6,number_format($row[3]),'LR',0,'R');
        
$this->Ln();
    }
    
//Closure line
    
$this->Cell(array_sum($w),0,'','T');
}

//Colored table
function FancyTable($header,$data)
{
    
//Colors, line width and bold font
    
$this->SetFillColor(255,0,0);
    
$this->SetTextColor(255);
    
$this->SetDrawColor(128,0,0);
    
$this->SetLineWidth(.3);
    
$this->SetFont('','B');
    
//Header
    
$w=array(40,35,40,45);
    for(
$i=0;$i<count($header);$i++)
        
$this->Cell($w[$i],7,$header[$i],1,0,'C',1);
    
$this->Ln();
    
//Color and font restoration
    
$this->SetFillColor(224,235,255);
    
$this->SetTextColor(0);
    
$this->SetFont('');
    
//Data
    
$fill=0;
    foreach(
$data as $row)
    {
        
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
        
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
        
$this->Cell($w[2],6,number_format($row[2]),'LR',0,'R',$fill);
        
$this->Cell($w[3],6,number_format($row[3]),'LR',0,'R',$fill);
        
$this->Ln();
        
$fill=!$fill;
    }
    
$this->Cell(array_sum($w),0,'','T');
}
}

$pdf=new PDF();
//Column titles
$header=array('Country','Capital','Area (sq km)','Pop. (thousands)');
//Data loading
$data=$pdf->LoadData('countries.txt');
$pdf->SetFont('Arial','',14);
$pdf->AddPage();
$pdf->BasicTable($header,$data);
$pdf->AddPage();
$pdf->ImprovedTable($header,$data);
$pdf->AddPage();
$pdf->FancyTable($header,$data);
$pdf->Output();
?> -
-

- -A table being just a collection of cells, it is natural to build one from them. The first -example is achieved in the most basic way possible: simple framed cells, all of the same size -and left aligned. The result is rudimentary but very quick to obtain. -
-
-The second table brings some improvements: each column has its own width, titles are centered -and figures right aligned. Moreover, horizontal lines have been removed. This is done by means -of the border parameter of the Cell() method, which specifies which sides of the -cell must be drawn. Here we want the left (L) and right (R) ones. It remains -the problem of the horizontal line to finish the table. There are two possibilities: either -check for the last line in the loop, in which case we use LRB for the border -parameter; or, as done here, add the line once the loop is over. -
-
-The third table is similar to the second one but uses colors. Fill, text and line colors are -simply specified. Alternate coloring for rows is obtained by using alternatively transparent -and filled cells. - - diff --git a/include/pdf/tutorial/tuto5.php b/include/pdf/tutorial/tuto5.php deleted file mode 100644 index 4b6c4535b..000000000 --- a/include/pdf/tutorial/tuto5.php +++ /dev/null @@ -1,102 +0,0 @@ -Cell(40,7,$col,1); - $this->Ln(); - //Data - foreach($data as $row) - { - foreach($row as $col) - $this->Cell(40,6,$col,1); - $this->Ln(); - } -} - -//Better table -function ImprovedTable($header,$data) -{ - //Column widths - $w=array(40,35,40,45); - //Header - for($i=0;$iCell($w[$i],7,$header[$i],1,0,'C'); - $this->Ln(); - //Data - foreach($data as $row) - { - $this->Cell($w[0],6,$row[0],'LR'); - $this->Cell($w[1],6,$row[1],'LR'); - $this->Cell($w[2],6,number_format($row[2]),'LR',0,'R'); - $this->Cell($w[3],6,number_format($row[3]),'LR',0,'R'); - $this->Ln(); - } - //Closure line - $this->Cell(array_sum($w),0,'','T'); -} - -//Colored table -function FancyTable($header,$data) -{ - //Colors, line width and bold font - $this->SetFillColor(255,0,0); - $this->SetTextColor(255); - $this->SetDrawColor(128,0,0); - $this->SetLineWidth(.3); - $this->SetFont('','B'); - //Header - $w=array(40,35,40,45); - for($i=0;$iCell($w[$i],7,$header[$i],1,0,'C',1); - $this->Ln(); - //Color and font restoration - $this->SetFillColor(224,235,255); - $this->SetTextColor(0); - $this->SetFont(''); - //Data - $fill=0; - foreach($data as $row) - { - $this->Cell($w[0],6,$row[0],'LR',0,'L',$fill); - $this->Cell($w[1],6,$row[1],'LR',0,'L',$fill); - $this->Cell($w[2],6,number_format($row[2]),'LR',0,'R',$fill); - $this->Cell($w[3],6,number_format($row[3]),'LR',0,'R',$fill); - $this->Ln(); - $fill=!$fill; - } - $this->Cell(array_sum($w),0,'','T'); -} -} - -$pdf=new PDF(); -//Column titles -$header=array('Country','Capital','Area (sq km)','Pop. (thousands)'); -//Data loading -$data=$pdf->LoadData('countries.txt'); -$pdf->SetFont('Arial','',14); -$pdf->AddPage(); -$pdf->BasicTable($header,$data); -$pdf->AddPage(); -$pdf->ImprovedTable($header,$data); -$pdf->AddPage(); -$pdf->FancyTable($header,$data); -$pdf->Output(); -?> diff --git a/include/pdf/tutorial/tuto6.htm b/include/pdf/tutorial/tuto6.htm deleted file mode 100644 index e94043ddc..000000000 --- a/include/pdf/tutorial/tuto6.htm +++ /dev/null @@ -1,68 +0,0 @@ - - - -Links and flowing text - - - -

Links and flowing text

-This tutorial explains how to insert links (internal and external) and shows a new text writing -mode. It also contains a rudimentary HTML parser. -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

class
PDF extends FPDF
{
var
$B;
var
$I;
var
$U;
var
$HREF;

function
PDF($orientation='P',$unit='mm',$format='A4')
{
    
//Call parent constructor
    
$this->FPDF($orientation,$unit,$format);
    
//Initialization
    
$this->B=0;
    
$this->I=0;
    
$this->U=0;
    
$this->HREF='';
}

function
WriteHTML($html)
{
    
//HTML parser
    
$html=str_replace("\n",' ',$html);
    
$a=preg_split('/<(.*)>/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE);
    foreach(
$a as $i=>$e)
    {
        if(
$i%2==0)
        {
            
//Text
            
if($this->HREF)
                
$this->PutLink($this->HREF,$e);
            else
                
$this->Write(5,$e);
        }
        else
        {
            
//Tag
            
if($e{0}=='/')
                
$this->CloseTag(strtoupper(substr($e,1)));
            else
            {
                
//Extract attributes
                
$a2=explode(' ',$e);
                
$tag=strtoupper(array_shift($a2));
                
$attr=array();
                foreach(
$a2 as $v)
                    if(
ereg('^([^=]*)=["\']?([^"\']*)["\']?$',$v,$a3))
                        
$attr[strtoupper($a3[1])]=$a3[2];
                
$this->OpenTag($tag,$attr);
            }
        }
    }
}

function
OpenTag($tag,$attr)
{
    
//Opening tag
    
if($tag=='B' or $tag=='I' or $tag=='U')
        
$this->SetStyle($tag,true);
    if(
$tag=='A')
        
$this->HREF=$attr['HREF'];
    if(
$tag=='BR')
        
$this->Ln(5);
}

function
CloseTag($tag)
{
    
//Closing tag
    
if($tag=='B' or $tag=='I' or $tag=='U')
        
$this->SetStyle($tag,false);
    if(
$tag=='A')
        
$this->HREF='';
}

function
SetStyle($tag,$enable)
{
    
//Modify style and select corresponding font
    
$this->$tag+=($enable ? 1 : -1);
    
$style='';
    foreach(array(
'B','I','U') as $s)
        if(
$this->$s>0)
            
$style.=$s;
    
$this->SetFont('',$style);
}

function
PutLink($URL,$txt)
{
    
//Put a hyperlink
    
$this->SetTextColor(0,0,255);
    
$this->SetStyle('U',true);
    
$this->Write(5,$txt,$URL);
    
$this->SetStyle('U',false);
    
$this->SetTextColor(0);
}
}

$html='You can now easily print text mixing different
styles : <B>bold</B>, <I>italic</I>, <U>underlined</U>, or
<B><I><U>all at once</U></I></B>!<BR>You can also insert links
on text, such as <A HREF="http://www.fpdf.org">www.fpdf.org</A>,
or on an image: click on the logo.'
;

$pdf=new PDF();
//First page
$pdf->AddPage();
$pdf->SetFont('Arial','',20);
$pdf->Write(5,'To find out what\'s new in this tutorial, click ');
$pdf->SetFont('','U');
$link=$pdf->AddLink();
$pdf->Write(5,'here',$link);
$pdf->SetFont('');
//Second page
$pdf->AddPage();
$pdf->SetLink($link);
$pdf->Image('logo.png',10,10,30,0,'','http://www.fpdf.org');
$pdf->SetLeftMargin(45);
$pdf->SetFontSize(14);
$pdf->WriteHTML($html);
$pdf->Output();
?> -
-

- -The new method to print text is Write(). It is very close to MultiCell(); the differences -are: -
    -
  • The end of line is at the right margin and the next line begins at the left one -
  • The current position moves at the end of the text -
-So it allows to write a chunk of text, alter the font style, then continue from the exact -place we left it. On the other hand, you cannot full justify it. -
-
-The method is used on the first page to put a link pointing to the second one. The beginning of -the sentence is written in regular style, then we switch to underline and finish it. The link -is created with AddLink(), which returns a link identifier. The identifier is -passed as third parameter of Write(). Once the second page is created, we use SetLink() to -make the link point to the beginning of the current page. -
-
-Then we put an image with a link on it. An external link points to an URL (HTTP, mailto...). -The URL is simply passed as last parameter of Image(). -Note that external links do not work when the PDF is displayed inside Netscape's plug-in. -
-
-Finally, the left margin is moved after the image with SetLeftMargin() and some text in -HTML format is output. An HTML parser is used for this, based on the regular expression splitting -function preg_split() and the option PREG_SPLIT_DELIM_CAPTURE (introduced in PHP 4.0.5) which -allows to fetch the separators as well (in this case the tags). If you use an older version of -PHP, replace the line with this one: -
-
-
- -$a=preg_split('/[<>]/',$html);
-
-

-which is less strict but gives the same results with valid HTML. -
-Recognized tags are <B>, <I>, <U>, <A> and <BR>; the others are -ignored. The parser also makes use of the Write() method. An external link is put the same way as -an internal one (third parameter of Write()). -
-Note that Cell() also allows to put links. - - diff --git a/include/pdf/tutorial/tuto6.php b/include/pdf/tutorial/tuto6.php deleted file mode 100644 index 5d9436c31..000000000 --- a/include/pdf/tutorial/tuto6.php +++ /dev/null @@ -1,123 +0,0 @@ -FPDF($orientation,$unit,$format); - //Initialization - $this->B=0; - $this->I=0; - $this->U=0; - $this->HREF=''; -} - -function WriteHTML($html) -{ - //HTML parser - $html=str_replace("\n",' ',$html); - $a=preg_split('/<(.*)>/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE); - foreach($a as $i=>$e) - { - if($i%2==0) - { - //Text - if($this->HREF) - $this->PutLink($this->HREF,$e); - else - $this->Write(5,$e); - } - else - { - //Tag - if($e{0}=='/') - $this->CloseTag(strtoupper(substr($e,1))); - else - { - //Extract attributes - $a2=explode(' ',$e); - $tag=strtoupper(array_shift($a2)); - $attr=array(); - foreach($a2 as $v) - if(ereg('^([^=]*)=["\']?([^"\']*)["\']?$',$v,$a3)) - $attr[strtoupper($a3[1])]=$a3[2]; - $this->OpenTag($tag,$attr); - } - } - } -} - -function OpenTag($tag,$attr) -{ - //Opening tag - if($tag=='B' or $tag=='I' or $tag=='U') - $this->SetStyle($tag,true); - if($tag=='A') - $this->HREF=$attr['HREF']; - if($tag=='BR') - $this->Ln(5); -} - -function CloseTag($tag) -{ - //Closing tag - if($tag=='B' or $tag=='I' or $tag=='U') - $this->SetStyle($tag,false); - if($tag=='A') - $this->HREF=''; -} - -function SetStyle($tag,$enable) -{ - //Modify style and select corresponding font - $this->$tag+=($enable ? 1 : -1); - $style=''; - foreach(array('B','I','U') as $s) - if($this->$s>0) - $style.=$s; - $this->SetFont('',$style); -} - -function PutLink($URL,$txt) -{ - //Put a hyperlink - $this->SetTextColor(0,0,255); - $this->SetStyle('U',true); - $this->Write(5,$txt,$URL); - $this->SetStyle('U',false); - $this->SetTextColor(0); -} -} - -$html='You can now easily print text mixing different -styles : bold, italic, underlined, or -all at once!
You can also insert links -on text, such as www.fpdf.org, -or on an image: click on the logo.'; - -$pdf=new PDF(); -//First page -$pdf->AddPage(); -$pdf->SetFont('Arial','',20); -$pdf->Write(5,'To find out what\'s new in this tutorial, click '); -$pdf->SetFont('','U'); -$link=$pdf->AddLink(); -$pdf->Write(5,'here',$link); -$pdf->SetFont(''); -//Second page -$pdf->AddPage(); -$pdf->SetLink($link); -$pdf->Image('logo.png',10,10,30,0,'','http://www.fpdf.org'); -$pdf->SetLeftMargin(45); -$pdf->SetFontSize(14); -$pdf->WriteHTML($html); -$pdf->Output(); -?> diff --git a/include/pdf/tutorial/tuto7.htm b/include/pdf/tutorial/tuto7.htm deleted file mode 100644 index 69aef60fb..000000000 --- a/include/pdf/tutorial/tuto7.htm +++ /dev/null @@ -1,316 +0,0 @@ - - - -Adding new fonts and encoding support - - - -

Adding new fonts and encoding support

-This tutorial explains how to use TrueType or Type1 fonts so that you are not limited to the standard -fonts any more. The other interest is that you can choose the font encoding, which allows you to -use other languages than the Western ones (the standard fonts having too few available characters). -
-
-There are two ways to use a new font: embedding it in the PDF or not. When a font is not -embedded, it is sought in the system. The advantage is that the PDF file is lighter; on the other -hand, if it is not available, a substitution font is used. So it is preferable to ensure that the -needed font is installed on the client systems. If the file is to be viewed by a large audience, -it is better to embed. -
-
-Adding a new font requires three steps for TrueTypes: -
    -
  • Generation of the metric file (.afm) -
  • Generation of the font definition file (.php) -
  • Declaration of the font in the script -
-For Type1, the first one is theoretically not necessary because the AFM file is usually shipped -with the font. In case you have only a metric file in PFM format, use the convertor available -here. -

Generation of the metric file

-The first step for a TrueType consists in generating the AFM file. A utility exists to do this -task: ttf2pt1. The Windows binary -is available here. The command line to use is -the following: -
-
-ttf2pt1 -a font.ttf font -
-
-For example, for Comic Sans MS Regular: -
-
-ttf2pt1 -a c:\windows\fonts\comic.ttf comic -
-
-Two files are created; the one we are interested in is comic.afm. -

Generation of the font definition file

-The second step consists in generating a PHP file containing all the information needed by FPDF; -in addition, the font file is compressed. To do this, a helper script is provided in the font/makefont/ -directory of the package: makefont.php. It contains the following function: -
-
-MakeFont(string fontfile, string afmfile [, string enc [, array patch [, string type]]]) -
-
-fontfile -
-Path to the .ttf or .pfb file. -
-afmfile -
-Path to the .afm file. -
-enc -
-Name of the encoding to use. Default value: cp1252. -
-patch -
-Optional modification of the encoding. Empty by default. -
-type -
-Type of the font (TrueType or Type1). Default value: TrueType. -
-
-The first parameter is the name of the font file. The extension must be either .ttf or .pfb and -determines the font type. If you own a Type1 font in ASCII format (.pfa), you can convert it to -binary format with t1utils. -
-If you don't want to embed the font, pass an empty string. In this case, type is given by the -type parameter. -
-Note: in the case of a font with the same name as a standard one, for instance arial.ttf, it is -mandatory to embed. If you don't, Acrobat will use its own font. -
-
-The AFM file is the one previously generated. -
-
-The encoding defines the association between a code (from 0 to 255) and a character. The first -128 are fixed and correspond to ASCII; the following are variable. The encodings are stored in -.map files. Those available are: -
    -
  • cp1250 (Central Europe) -
  • cp1251 (Cyrillic) -
  • cp1252 (Western Europe) -
  • cp1253 (Greek) -
  • cp1254 (Turkish) -
  • cp1255 (Hebrew) -
  • cp1257 (Baltic) -
  • cp1258 (Vietnamese) -
  • cp874 (Thai) -
  • ISO-8859-1 (Western Europe) -
  • ISO-8859-2 (Central Europe) -
  • ISO-8859-4 (Baltic) -
  • ISO-8859-5 (Cyrillic) -
  • ISO-8859-7 (Greek) -
  • ISO-8859-9 (Turkish) -
  • ISO-8859-11 (Thai) -
  • ISO-8859-15 (Western Europe) -
  • ISO-8859-16 (Central Europe) -
  • KOI8-R (Russian) -
  • KOI8-U (Ukrainian) -
-Of course, the font must contain the characters corresponding to the chosen encoding. -
-In the particular case of a symbolic font (that is to say which does not contain letters, such -as Symbol or ZapfDingbats), pass an empty string. -
-The encodings which begin with cp are those used by Windows; Linux systems usually use ISO. -
-Remark: the standard fonts use cp1252. -
-
-The fourth parameter gives the possibility to alter the encoding. Sometimes you may want to add -some characters. For instance, ISO-8859-1 does not contain the euro symbol. To add it at position -164, pass array(164=>'Euro'). -
-
-The last parameter is used to give the type of the font in case it is not embedded (that is to -say the first parameter is empty). -
-
-After you have called the function (create a new file for this and include makefont.php, or -simply add the call directly inside), a .php file is created, with the same name as the .afm one. -You may rename it if you wish. If the case of embedding, the font file is compressed and gives a -second file with .z as extension (except if the compression function is not available, it -requires Zlib). You may rename it too, but in this case you have to alter the variable $file -in the .php file accordingly. -
-
-Example: -
-
-MakeFont('c:\\windows\\fonts\\comic.ttf','comic.afm','cp1252'); -
-
-which gives the files comic.php and comic.z. -
-
-Then you have to copy the generated file(s) either in the directory of the script which will use -the font, or in the directory given by FPDF_FONTPATH if the constant is defined. If the font file -could not be compressed, copy the .ttf or .pfb instead of the .z. -

Declaration of the font in the script

-The last step is the most simple. You just need to call the AddFont() method. For instance: -
-
-
- -$pdf->AddFont('Comic','','comic.php');
-
-

-or simply: -
-
-
- -$pdf->AddFont('Comic');
-
-

-And the font is now available (in regular and underlined styles), usable like the others. If we -had worked with Comic Sans MS Bold (comicbd.ttf), we would have put: -
-
-
- -$pdf->AddFont('Comic','B','comicbd.php');
-
-

-

Example

-Let's now see a small complete example. The font used is Calligrapher, available at -www.abstractfonts.com (a site -offering numerous free TrueType fonts). The first step is the generation of the AFM file: -
-
-ttf2pt1 -a calligra.ttf calligra -
-
-which gives calligra.afm (and calligra.t1a that we can delete). Then we generate the definition -file: -
-
-
- -<?php
require('../font/makefont/makefont.php');

MakeFont('calligra.ttf','calligra.afm');
?> -
-

-The function call gives the following report: -
-
-Warning: character Euro is missing
-Warning: character Zcaron is missing
-Warning: character zcaron is missing
-Warning: character eth is missing
-Font file compressed (calligra.z)
-Font definition file generated (calligra.php)
-
-The euro character is not present in the font (it is too old). Three other characters are missing -too, but we are not interested in them anyway. -
-We can now copy the two files in the font directory and write the script: -
-
-
- -<?php
define('FPDF_FONTPATH','font/');
require(
'fpdf.php');

$pdf=new FPDF();
$pdf->AddFont('Calligrapher','','calligra.php');
$pdf->AddPage();
$pdf->SetFont('Calligrapher','',35);
$pdf->Cell(0,10,'Enjoy new fonts with FPDF!');
$pdf->Output();
?> -
-

- -

About the euro symbol

-The euro character is not present in all encodings, and is not always placed at the same position: -
-
- - - - - - - - - - - - - - - - - - - - - - - -
EncodingPosition
cp1250128
cp1251136
cp1252128
cp1253128
cp1254128
cp1255128
cp1257128
cp1258128
cp874128
ISO-8859-1absent
ISO-8859-2absent
ISO-8859-4absent
ISO-8859-5absent
ISO-8859-7absent
ISO-8859-9absent
ISO-8859-11absent
ISO-8859-15164
ISO-8859-16164
KOI8-Rabsent
KOI8-Uabsent
-
-ISO-8859-1 is widespread but does not include the euro sign. If you need it, the simplest thing -to do is using cp1252 or ISO-8859-15 instead, which are nearly identical but contain the precious -symbol. -
-As for ISO-8859-2, it is possible to use ISO-8859-16 instead, but it contains many differences. -It is therefore simpler to patch the encoding to add the symbol to it, as explained above. The -same is true for the other encodings. -

Font synthesis under Windows

-When a TrueType font is not available in a given style, Windows is able to synthesize it from the -regular version. For instance, there is no Comic Sans MS Italic, but it can be built from Comic -Sans MS Regular. This feature can be used in a PDF file, but unfortunately requires that the -regular font be present in the system (you must not embed it). Here is how to do it: -
    -
  • Generate the definition file for the regular font without embedding (you may rename it to -reflect the desired style) -
  • Open it and append to the variable $name a comma followed by the desired style -(Italic, Bold or BoldItalic) -
-For instance, for the file comici.php: -
-
-$name='ComicSansMS,Italic'; -
-
-It can then be used normally: -
-
-
- -$pdf->AddFont('Comic','I','comici.php');
-
-

-

Reducing the size of TrueType fonts

-Font files are often quite voluminous (more than 100, even 200KB); this is due to the fact that -they contain the characters corresponding to many encodings. Zlib compression reduces them but -they remain fairly big. A technique exists to reduce them further. It consists in converting the -font to the Type1 format with ttf2pt1 by specifying the encoding you are interested in; all other -characters will be discarded. -
-For instance, the arial.ttf font shipped with Windows 98 is 267KB (it contains 1296 characters). -After compression it gives 147. Let's convert it to Type1 by keeping only cp1250 characters: -
-
-ttf2pt1 -b -L cp1250.map c:\windows\fonts\arial.ttf arial -
-
-The .map files are located in the font/makefont/ directory of the package. The command produces -arial.pfb and arial.afm. The arial.pfb file is only 35KB, and 30KB after compression. -
-
-It is possible to go even further. If you are interested only by a subset of the encoding (you -probably don't need all 217 characters), you can open the .map file and remove the lines you are -not interested in. This will reduce the file size accordingly. - - diff --git a/include/pdf/tutorial/tuto7.php b/include/pdf/tutorial/tuto7.php deleted file mode 100644 index 38caf9394..000000000 --- a/include/pdf/tutorial/tuto7.php +++ /dev/null @@ -1,10 +0,0 @@ -AddFont('Calligrapher','','calligra.php'); -$pdf->AddPage(); -$pdf->SetFont('Calligrapher','',35); -$pdf->Cell(0,10,'Enjoy new fonts with FPDF!'); -$pdf->Output(); -?>