2003-05-31 10:52:15 +00:00
|
|
|
<?php
|
2005-06-12 16:13:26 +00:00
|
|
|
/*******************************************************************************
|
2010-08-27 19:45:13 +00:00
|
|
|
* FPDF *
|
2005-06-12 16:13:26 +00:00
|
|
|
* *
|
2011-10-14 17:13:05 +00:00
|
|
|
* Version: 1.7 *
|
|
|
|
* Date: 2011-06-18 *
|
2010-08-27 19:45:13 +00:00
|
|
|
* Author: Olivier PLATHEY *
|
2016-05-10 16:37:01 +00:00
|
|
|
* Patched for LAM: PHP 7 support, ufpdf compatibility *
|
2005-06-12 16:13:26 +00:00
|
|
|
*******************************************************************************/
|
2004-02-23 22:30:00 +00:00
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
define('FPDF_VERSION','1.7');
|
2005-06-12 16:13:26 +00:00
|
|
|
|
|
|
|
class FPDF
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
var $page; // current page number
|
|
|
|
var $n; // current object number
|
|
|
|
var $offsets; // array of object offsets
|
|
|
|
var $buffer; // buffer holding in-memory PDF
|
|
|
|
var $pages; // array containing pages
|
|
|
|
var $state; // current document state
|
|
|
|
var $compress; // compression flag
|
|
|
|
var $k; // scale factor (number of points in user unit)
|
|
|
|
var $DefOrientation; // default orientation
|
|
|
|
var $CurOrientation; // current orientation
|
|
|
|
var $StdPageSizes; // standard page sizes
|
|
|
|
var $DefPageSize; // default page size
|
|
|
|
var $CurPageSize; // current page size
|
|
|
|
var $PageSizes; // used for pages with non default sizes or orientations
|
|
|
|
var $wPt, $hPt; // dimensions of current page in points
|
|
|
|
var $w, $h; // dimensions of current page in user unit
|
|
|
|
var $lMargin; // left margin
|
|
|
|
var $tMargin; // top margin
|
|
|
|
var $rMargin; // right margin
|
|
|
|
var $bMargin; // page break margin
|
|
|
|
var $cMargin; // cell margin
|
|
|
|
var $x, $y; // current position in user unit
|
|
|
|
var $lasth; // height of last printed cell
|
|
|
|
var $LineWidth; // line width in user unit
|
|
|
|
var $fontpath; // path containing fonts
|
|
|
|
var $CoreFonts; // array of core font names
|
|
|
|
var $fonts; // array of used fonts
|
|
|
|
var $FontFiles; // array of font files
|
|
|
|
var $diffs; // array of encoding differences
|
|
|
|
var $FontFamily; // current font family
|
|
|
|
var $FontStyle; // current font style
|
|
|
|
var $underline; // underlining flag
|
|
|
|
var $CurrentFont; // current font info
|
|
|
|
var $FontSizePt; // current font size in points
|
|
|
|
var $FontSize; // current font size in user unit
|
|
|
|
var $DrawColor; // commands for drawing color
|
|
|
|
var $FillColor; // commands for filling color
|
|
|
|
var $TextColor; // commands for text color
|
|
|
|
var $ColorFlag; // indicates whether fill and text colors are different
|
|
|
|
var $ws; // word spacing
|
|
|
|
var $images; // array of used images
|
|
|
|
var $PageLinks; // array of links in pages
|
|
|
|
var $links; // array of internal links
|
|
|
|
var $AutoPageBreak; // automatic page breaking
|
|
|
|
var $PageBreakTrigger; // threshold used to trigger page breaks
|
|
|
|
var $InHeader; // flag set when processing header
|
|
|
|
var $InFooter; // flag set when processing footer
|
|
|
|
var $ZoomMode; // zoom display mode
|
|
|
|
var $LayoutMode; // layout display mode
|
|
|
|
var $title; // title
|
|
|
|
var $subject; // subject
|
|
|
|
var $author; // author
|
|
|
|
var $keywords; // keywords
|
|
|
|
var $creator; // creator
|
|
|
|
var $AliasNbPages; // alias for total number of pages
|
|
|
|
var $PDFVersion; // PDF version number
|
2003-05-31 10:52:15 +00:00
|
|
|
|
2004-02-23 22:30:00 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Public methods *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2015-12-31 14:07:31 +00:00
|
|
|
function __construct($orientation='P', $unit='mm', $size='A4')
|
2005-06-12 16:13:26 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Some checks
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->_dochecks();
|
2011-10-14 17:13:05 +00:00
|
|
|
// Initialization of properties
|
|
|
|
$this->page = 0;
|
|
|
|
$this->n = 2;
|
|
|
|
$this->buffer = '';
|
|
|
|
$this->pages = array();
|
|
|
|
$this->PageSizes = array();
|
|
|
|
$this->state = 0;
|
|
|
|
$this->fonts = array();
|
|
|
|
$this->FontFiles = array();
|
|
|
|
$this->diffs = array();
|
|
|
|
$this->images = array();
|
|
|
|
$this->links = array();
|
|
|
|
$this->InHeader = false;
|
|
|
|
$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;
|
|
|
|
// Font path
|
|
|
|
if(defined('FPDF_FONTPATH'))
|
|
|
|
{
|
|
|
|
$this->fontpath = FPDF_FONTPATH;
|
|
|
|
if(substr($this->fontpath,-1)!='/' && substr($this->fontpath,-1)!='\\')
|
|
|
|
$this->fontpath .= '/';
|
|
|
|
}
|
|
|
|
elseif(is_dir(dirname(__FILE__).'/font'))
|
|
|
|
$this->fontpath = dirname(__FILE__).'/font/';
|
|
|
|
else
|
|
|
|
$this->fontpath = '';
|
|
|
|
// Core fonts
|
|
|
|
$this->CoreFonts = array('courier', 'helvetica', 'times', 'symbol', 'zapfdingbats');
|
|
|
|
// Scale factor
|
2005-06-12 16:13:26 +00:00
|
|
|
if($unit=='pt')
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->k = 1;
|
2005-06-12 16:13:26 +00:00
|
|
|
elseif($unit=='mm')
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->k = 72/25.4;
|
2005-06-12 16:13:26 +00:00
|
|
|
elseif($unit=='cm')
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->k = 72/2.54;
|
2005-06-12 16:13:26 +00:00
|
|
|
elseif($unit=='in')
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->k = 72;
|
2005-06-12 16:13:26 +00:00
|
|
|
else
|
|
|
|
$this->Error('Incorrect unit: '.$unit);
|
2011-10-14 17:13:05 +00:00
|
|
|
// Page sizes
|
|
|
|
$this->StdPageSizes = array('a3'=>array(841.89,1190.55), 'a4'=>array(595.28,841.89), 'a5'=>array(420.94,595.28),
|
2010-08-27 19:45:13 +00:00
|
|
|
'letter'=>array(612,792), 'legal'=>array(612,1008));
|
2011-10-14 17:13:05 +00:00
|
|
|
$size = $this->_getpagesize($size);
|
|
|
|
$this->DefPageSize = $size;
|
|
|
|
$this->CurPageSize = $size;
|
|
|
|
// Page orientation
|
|
|
|
$orientation = strtolower($orientation);
|
2005-06-12 16:13:26 +00:00
|
|
|
if($orientation=='p' || $orientation=='portrait')
|
2004-10-30 16:46:06 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->DefOrientation = 'P';
|
|
|
|
$this->w = $size[0];
|
|
|
|
$this->h = $size[1];
|
2004-10-30 16:46:06 +00:00
|
|
|
}
|
2005-06-12 16:13:26 +00:00
|
|
|
elseif($orientation=='l' || $orientation=='landscape')
|
2004-10-30 16:46:06 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->DefOrientation = 'L';
|
|
|
|
$this->w = $size[1];
|
|
|
|
$this->h = $size[0];
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2005-06-12 16:13:26 +00:00
|
|
|
else
|
|
|
|
$this->Error('Incorrect orientation: '.$orientation);
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->CurOrientation = $this->DefOrientation;
|
|
|
|
$this->wPt = $this->w*$this->k;
|
|
|
|
$this->hPt = $this->h*$this->k;
|
|
|
|
// Page margins (1 cm)
|
|
|
|
$margin = 28.35/$this->k;
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->SetMargins($margin,$margin);
|
2011-10-14 17:13:05 +00:00
|
|
|
// Interior cell margin (1 mm)
|
|
|
|
$this->cMargin = $margin/10;
|
|
|
|
// Line width (0.2 mm)
|
|
|
|
$this->LineWidth = .567/$this->k;
|
|
|
|
// Automatic page break
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->SetAutoPageBreak(true,2*$margin);
|
2011-10-14 17:13:05 +00:00
|
|
|
// Default display mode
|
|
|
|
$this->SetDisplayMode('default');
|
|
|
|
// Enable compression
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->SetCompression(true);
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set default PDF version number
|
|
|
|
$this->PDFVersion = '1.3';
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetMargins($left, $top, $right=null)
|
2005-06-12 16:13:26 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set left, top and right margins
|
|
|
|
$this->lMargin = $left;
|
|
|
|
$this->tMargin = $top;
|
2010-08-27 19:45:13 +00:00
|
|
|
if($right===null)
|
2011-10-14 17:13:05 +00:00
|
|
|
$right = $left;
|
|
|
|
$this->rMargin = $right;
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetLeftMargin($margin)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set left margin
|
|
|
|
$this->lMargin = $margin;
|
2005-06-12 16:13:26 +00:00
|
|
|
if($this->page>0 && $this->x<$margin)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $margin;
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetTopMargin($margin)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set top margin
|
|
|
|
$this->tMargin = $margin;
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetRightMargin($margin)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set right margin
|
|
|
|
$this->rMargin = $margin;
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetAutoPageBreak($auto, $margin=0)
|
2005-06-12 16:13:26 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set auto page break mode and triggering margin
|
|
|
|
$this->AutoPageBreak = $auto;
|
|
|
|
$this->bMargin = $margin;
|
|
|
|
$this->PageBreakTrigger = $this->h-$margin;
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
function SetDisplayMode($zoom, $layout='default')
|
2005-06-12 16:13:26 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set display mode in viewer
|
2005-06-12 16:13:26 +00:00
|
|
|
if($zoom=='fullpage' || $zoom=='fullwidth' || $zoom=='real' || $zoom=='default' || !is_string($zoom))
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ZoomMode = $zoom;
|
2005-06-12 16:13:26 +00:00
|
|
|
else
|
|
|
|
$this->Error('Incorrect zoom display mode: '.$zoom);
|
|
|
|
if($layout=='single' || $layout=='continuous' || $layout=='two' || $layout=='default')
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->LayoutMode = $layout;
|
2005-06-12 16:13:26 +00:00
|
|
|
else
|
|
|
|
$this->Error('Incorrect layout display mode: '.$layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetCompression($compress)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set page compression
|
2005-06-12 16:13:26 +00:00
|
|
|
if(function_exists('gzcompress'))
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->compress = $compress;
|
2005-06-12 16:13:26 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->compress = false;
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
2003-05-31 10:52:15 +00:00
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetTitle($title, $isUTF8=false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Title of document
|
2010-08-27 19:45:13 +00:00
|
|
|
if($isUTF8)
|
2011-10-14 17:13:05 +00:00
|
|
|
$title = $this->_UTF8toUTF16($title);
|
|
|
|
$this->title = $title;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetSubject($subject, $isUTF8=false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Subject of document
|
2010-08-27 19:45:13 +00:00
|
|
|
if($isUTF8)
|
2011-10-14 17:13:05 +00:00
|
|
|
$subject = $this->_UTF8toUTF16($subject);
|
|
|
|
$this->subject = $subject;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetAuthor($author, $isUTF8=false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Author of document
|
2010-08-27 19:45:13 +00:00
|
|
|
if($isUTF8)
|
2011-10-14 17:13:05 +00:00
|
|
|
$author = $this->_UTF8toUTF16($author);
|
|
|
|
$this->author = $author;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetKeywords($keywords, $isUTF8=false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Keywords of document
|
2010-08-27 19:45:13 +00:00
|
|
|
if($isUTF8)
|
2011-10-14 17:13:05 +00:00
|
|
|
$keywords = $this->_UTF8toUTF16($keywords);
|
|
|
|
$this->keywords = $keywords;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetCreator($creator, $isUTF8=false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Creator of document
|
2010-08-27 19:45:13 +00:00
|
|
|
if($isUTF8)
|
2011-10-14 17:13:05 +00:00
|
|
|
$creator = $this->_UTF8toUTF16($creator);
|
|
|
|
$this->creator = $creator;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function AliasNbPages($alias='{nb}')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Define an alias for total number of pages
|
|
|
|
$this->AliasNbPages = $alias;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function Error($msg)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Fatal error
|
2010-08-27 19:45:13 +00:00
|
|
|
die('<b>FPDF error:</b> '.$msg);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function Open()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Begin document
|
|
|
|
$this->state = 1;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function Close()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Terminate document
|
2004-02-23 22:30:00 +00:00
|
|
|
if($this->state==3)
|
|
|
|
return;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page==0)
|
|
|
|
$this->AddPage();
|
2011-10-14 17:13:05 +00:00
|
|
|
// Page footer
|
|
|
|
$this->InFooter = true;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->Footer();
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->InFooter = false;
|
|
|
|
// Close page
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_endpage();
|
2011-10-14 17:13:05 +00:00
|
|
|
// Close document
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_enddoc();
|
|
|
|
}
|
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
function AddPage($orientation='', $size='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Start a new page
|
2004-02-23 22:30:00 +00:00
|
|
|
if($this->state==0)
|
|
|
|
$this->Open();
|
2011-10-14 17:13:05 +00:00
|
|
|
$family = $this->FontFamily;
|
|
|
|
$style = $this->FontStyle.($this->underline ? 'U' : '');
|
|
|
|
$fontsize = $this->FontSizePt;
|
|
|
|
$lw = $this->LineWidth;
|
|
|
|
$dc = $this->DrawColor;
|
|
|
|
$fc = $this->FillColor;
|
|
|
|
$tc = $this->TextColor;
|
|
|
|
$cf = $this->ColorFlag;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Page footer
|
|
|
|
$this->InFooter = true;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->Footer();
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->InFooter = false;
|
|
|
|
// Close page
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_endpage();
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// Start new page
|
|
|
|
$this->_beginpage($orientation,$size);
|
|
|
|
// Set line cap style to square
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('2 J');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set line width
|
|
|
|
$this->LineWidth = $lw;
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('%.2F w',$lw*$this->k));
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set font
|
2003-05-31 10:52:15 +00:00
|
|
|
if($family)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->SetFont($family,$style,$fontsize);
|
|
|
|
// Set colors
|
|
|
|
$this->DrawColor = $dc;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($dc!='0 G')
|
|
|
|
$this->_out($dc);
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FillColor = $fc;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($fc!='0 g')
|
|
|
|
$this->_out($fc);
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->TextColor = $tc;
|
|
|
|
$this->ColorFlag = $cf;
|
|
|
|
// Page header
|
|
|
|
$this->InHeader = true;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->Header();
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->InHeader = false;
|
|
|
|
// Restore line width
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->LineWidth!=$lw)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->LineWidth = $lw;
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('%.2F w',$lw*$this->k));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// Restore font
|
2003-05-31 10:52:15 +00:00
|
|
|
if($family)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->SetFont($family,$style,$fontsize);
|
|
|
|
// Restore colors
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->DrawColor!=$dc)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->DrawColor = $dc;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out($dc);
|
|
|
|
}
|
|
|
|
if($this->FillColor!=$fc)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FillColor = $fc;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out($fc);
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->TextColor = $tc;
|
|
|
|
$this->ColorFlag = $cf;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function Header()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// To be implemented in your own inherited class
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function Footer()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// To be implemented in your own inherited class
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function PageNo()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Get current page number
|
2003-05-31 10:52:15 +00:00
|
|
|
return $this->page;
|
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetDrawColor($r, $g=null, $b=null)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set color for all stroking operations
|
2010-08-27 19:45:13 +00:00
|
|
|
if(($r==0 && $g==0 && $b==0) || $g===null)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->DrawColor = sprintf('%.3F G',$r/255);
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->DrawColor = sprintf('%.3F %.3F %.3F RG',$r/255,$g/255,$b/255);
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page>0)
|
|
|
|
$this->_out($this->DrawColor);
|
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetFillColor($r, $g=null, $b=null)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set color for all filling operations
|
2010-08-27 19:45:13 +00:00
|
|
|
if(($r==0 && $g==0 && $b==0) || $g===null)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FillColor = sprintf('%.3F g',$r/255);
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FillColor = sprintf('%.3F %.3F %.3F rg',$r/255,$g/255,$b/255);
|
|
|
|
$this->ColorFlag = ($this->FillColor!=$this->TextColor);
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page>0)
|
|
|
|
$this->_out($this->FillColor);
|
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetTextColor($r, $g=null, $b=null)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set color for text
|
2010-08-27 19:45:13 +00:00
|
|
|
if(($r==0 && $g==0 && $b==0) || $g===null)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->TextColor = sprintf('%.3F g',$r/255);
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->TextColor = sprintf('%.3F %.3F %.3F rg',$r/255,$g/255,$b/255);
|
|
|
|
$this->ColorFlag = ($this->FillColor!=$this->TextColor);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function GetStringWidth($s)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Get width of a string in the current font
|
|
|
|
$s = (string)$s;
|
|
|
|
$cw = &$this->CurrentFont['cw'];
|
|
|
|
$w = 0;
|
|
|
|
$l = strlen($s);
|
2003-05-31 10:52:15 +00:00
|
|
|
for($i=0;$i<$l;$i++)
|
2011-10-14 17:13:05 +00:00
|
|
|
$w += $cw[$s[$i]];
|
2003-05-31 10:52:15 +00:00
|
|
|
return $w*$this->FontSize/1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetLineWidth($width)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set line width
|
|
|
|
$this->LineWidth = $width;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page>0)
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('%.2F w',$width*$this->k));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Line($x1, $y1, $x2, $y2)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Draw a line
|
2010-08-27 19:45:13 +00:00
|
|
|
$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));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Rect($x, $y, $w, $h, $style='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Draw a rectangle
|
2003-05-31 10:52:15 +00:00
|
|
|
if($style=='F')
|
2011-10-14 17:13:05 +00:00
|
|
|
$op = 'f';
|
2005-06-12 16:13:26 +00:00
|
|
|
elseif($style=='FD' || $style=='DF')
|
2011-10-14 17:13:05 +00:00
|
|
|
$op = 'B';
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$op = 'S';
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('%.2F %.2F %.2F %.2F re %s',$x*$this->k,($this->h-$y)*$this->k,$w*$this->k,-$h*$this->k,$op));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function AddFont($family, $style='', $file='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Add a TrueType, OpenType or Type1 font
|
|
|
|
$family = strtolower($family);
|
2005-06-12 16:13:26 +00:00
|
|
|
if($file=='')
|
2011-10-14 17:13:05 +00:00
|
|
|
$file = str_replace(' ','',$family).strtolower($style).'.php';
|
|
|
|
$style = strtoupper($style);
|
2003-05-31 10:52:15 +00:00
|
|
|
if($style=='IB')
|
2011-10-14 17:13:05 +00:00
|
|
|
$style = 'BI';
|
|
|
|
$fontkey = $family.$style;
|
2005-06-12 16:13:26 +00:00
|
|
|
if(isset($this->fonts[$fontkey]))
|
2010-08-27 19:45:13 +00:00
|
|
|
return;
|
2011-10-14 17:13:05 +00:00
|
|
|
$info = $this->_loadfont($file);
|
|
|
|
$info['i'] = count($this->fonts)+1;
|
|
|
|
if(!empty($info['diff']))
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Search existing encodings
|
|
|
|
$n = array_search($info['diff'],$this->diffs);
|
|
|
|
if(!$n)
|
2005-06-12 16:13:26 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$n = count($this->diffs)+1;
|
|
|
|
$this->diffs[$n] = $info['diff'];
|
2005-06-12 16:13:26 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$info['diffn'] = $n;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
if(!empty($info['file']))
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Embedded font
|
|
|
|
if($info['type']=='TrueType')
|
|
|
|
$this->FontFiles[$info['file']] = array('length1'=>$info['originalsize']);
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FontFiles[$info['file']] = array('length1'=>$info['size1'], 'length2'=>$info['size2']);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->fonts[$fontkey] = $info;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetFont($family, $style='', $size=0)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Select a font; size given in points
|
2003-05-31 10:52:15 +00:00
|
|
|
if($family=='')
|
2011-10-14 17:13:05 +00:00
|
|
|
$family = $this->FontFamily;
|
|
|
|
else
|
|
|
|
$family = strtolower($family);
|
|
|
|
$style = strtoupper($style);
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($style,'U')!==false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->underline = true;
|
|
|
|
$style = str_replace('U','',$style);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->underline = false;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($style=='IB')
|
2011-10-14 17:13:05 +00:00
|
|
|
$style = 'BI';
|
2003-05-31 10:52:15 +00:00
|
|
|
if($size==0)
|
2011-10-14 17:13:05 +00:00
|
|
|
$size = $this->FontSizePt;
|
|
|
|
// Test if font is already selected
|
2005-06-12 16:13:26 +00:00
|
|
|
if($this->FontFamily==$family && $this->FontStyle==$style && $this->FontSizePt==$size)
|
2003-05-31 10:52:15 +00:00
|
|
|
return;
|
2011-10-14 17:13:05 +00:00
|
|
|
// Test if font is already loaded
|
|
|
|
$fontkey = $family.$style;
|
2003-05-31 10:52:15 +00:00
|
|
|
if(!isset($this->fonts[$fontkey]))
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Test if one of the core fonts
|
|
|
|
if($family=='arial')
|
|
|
|
$family = 'helvetica';
|
|
|
|
if(in_array($family,$this->CoreFonts))
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
if($family=='symbol' || $family=='zapfdingbats')
|
|
|
|
$style = '';
|
|
|
|
$fontkey = $family.$style;
|
|
|
|
if(!isset($this->fonts[$fontkey]))
|
|
|
|
$this->AddFont($family,$style);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
$this->Error('Undefined font: '.$family.' '.$style);
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// Select it
|
|
|
|
$this->FontFamily = $family;
|
|
|
|
$this->FontStyle = $style;
|
|
|
|
$this->FontSizePt = $size;
|
|
|
|
$this->FontSize = $size/$this->k;
|
|
|
|
$this->CurrentFont = &$this->fonts[$fontkey];
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page>0)
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('BT /F%d %.2F Tf ET',$this->CurrentFont['i'],$this->FontSizePt));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function SetFontSize($size)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set font size in points
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->FontSizePt==$size)
|
|
|
|
return;
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FontSizePt = $size;
|
|
|
|
$this->FontSize = $size/$this->k;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->page>0)
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('BT /F%d %.2F Tf ET',$this->CurrentFont['i'],$this->FontSizePt));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function AddLink()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Create a new internal link
|
|
|
|
$n = count($this->links)+1;
|
|
|
|
$this->links[$n] = array(0, 0);
|
2003-05-31 10:52:15 +00:00
|
|
|
return $n;
|
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetLink($link, $y=0, $page=-1)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set destination of internal link
|
2003-05-31 10:52:15 +00:00
|
|
|
if($y==-1)
|
2011-10-14 17:13:05 +00:00
|
|
|
$y = $this->y;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($page==-1)
|
2011-10-14 17:13:05 +00:00
|
|
|
$page = $this->page;
|
|
|
|
$this->links[$link] = array($page, $y);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Link($x, $y, $w, $h, $link)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// 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);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Text($x, $y, $txt)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Output a string
|
|
|
|
$s = sprintf('BT %.2F %.2F Td (%s) Tj ET',$x*$this->k,($this->h-$y)*$this->k,$this->_escape($txt));
|
2005-06-12 16:13:26 +00:00
|
|
|
if($this->underline && $txt!='')
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= ' '.$this->_dounderline($x,$y,$txt);
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->ColorFlag)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s = 'q '.$this->TextColor.' '.$s.' Q';
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out($s);
|
|
|
|
}
|
|
|
|
|
|
|
|
function AcceptPageBreak()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Accept automatic page break or not
|
2003-05-31 10:52:15 +00:00
|
|
|
return $this->AutoPageBreak;
|
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Output a cell
|
|
|
|
$k = $this->k;
|
2010-08-27 19:45:13 +00:00
|
|
|
if($this->y+$h>$this->PageBreakTrigger && !$this->InHeader && !$this->InFooter && $this->AcceptPageBreak())
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Automatic page break
|
|
|
|
$x = $this->x;
|
|
|
|
$ws = $this->ws;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($ws>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ws = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('0 Tw');
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->AddPage($this->CurOrientation,$this->CurPageSize);
|
|
|
|
$this->x = $x;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($ws>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ws = $ws;
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('%.3F Tw',$ws*$k));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if($w==0)
|
2011-10-14 17:13:05 +00:00
|
|
|
$w = $this->w-$this->rMargin-$this->x;
|
|
|
|
$s = '';
|
2010-08-27 19:45:13 +00:00
|
|
|
if($fill || $border==1)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2010-08-27 19:45:13 +00:00
|
|
|
if($fill)
|
2011-10-14 17:13:05 +00:00
|
|
|
$op = ($border==1) ? 'B' : 'f';
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$op = 'S';
|
|
|
|
$s = sprintf('%.2F %.2F %.2F %.2F re %s ',$this->x*$k,($this->h-$this->y)*$k,$w*$k,-$h*$k,$op);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
if(is_string($border))
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$x = $this->x;
|
|
|
|
$y = $this->y;
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($border,'L')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-$y)*$k,$x*$k,($this->h-($y+$h))*$k);
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($border,'T')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-$y)*$k);
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($border,'R')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= sprintf('%.2F %.2F m %.2F %.2F l S ',($x+$w)*$k,($this->h-$y)*$k,($x+$w)*$k,($this->h-($y+$h))*$k);
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($border,'B')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= sprintf('%.2F %.2F m %.2F %.2F l S ',$x*$k,($this->h-($y+$h))*$k,($x+$w)*$k,($this->h-($y+$h))*$k);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2005-06-12 16:13:26 +00:00
|
|
|
if($txt!=='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
|
|
|
if($align=='R')
|
2011-10-14 17:13:05 +00:00
|
|
|
$dx = $w-$this->cMargin-$this->GetStringWidth($txt);
|
2003-05-31 10:52:15 +00:00
|
|
|
elseif($align=='C')
|
2011-10-14 17:13:05 +00:00
|
|
|
$dx = ($w-$this->GetStringWidth($txt))/2;
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$dx = $this->cMargin;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->ColorFlag)
|
2011-10-14 17:13:05 +00:00
|
|
|
$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);
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->underline)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= ' '.$this->_dounderline($this->x+$dx,$this->y+.5*$h+.3*$this->FontSize,$txt);
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->ColorFlag)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= ' Q';
|
2003-05-31 10:52:15 +00:00
|
|
|
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);
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->lasth = $h;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($ln>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Go to next line
|
|
|
|
$this->y += $h;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($ln==1)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $this->lMargin;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x += $w;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function MultiCell($w, $h, $txt, $border=0, $align='J', $fill=false)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Output text with automatic or explicit line breaks
|
|
|
|
$cw = &$this->CurrentFont['cw'];
|
2003-05-31 10:52:15 +00:00
|
|
|
if($w==0)
|
2011-10-14 17:13:05 +00:00
|
|
|
$w = $this->w-$this->rMargin-$this->x;
|
|
|
|
$wmax = ($w-2*$this->cMargin)*1000/$this->FontSize;
|
|
|
|
$s = str_replace("\r",'',$txt);
|
|
|
|
$nb = strlen($s);
|
2005-06-12 16:13:26 +00:00
|
|
|
if($nb>0 && $s[$nb-1]=="\n")
|
2003-05-31 10:52:15 +00:00
|
|
|
$nb--;
|
2011-10-14 17:13:05 +00:00
|
|
|
$b = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($border)
|
|
|
|
{
|
|
|
|
if($border==1)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$border = 'LTRB';
|
|
|
|
$b = 'LRT';
|
|
|
|
$b2 = 'LR';
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$b2 = '';
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($border,'L')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$b2 .= 'L';
|
2005-06-12 16:13:26 +00:00
|
|
|
if(strpos($border,'R')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$b2 .= 'R';
|
|
|
|
$b = (strpos($border,'T')!==false) ? $b2.'T' : $b2;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = -1;
|
|
|
|
$i = 0;
|
|
|
|
$j = 0;
|
|
|
|
$l = 0;
|
|
|
|
$ns = 0;
|
|
|
|
$nl = 1;
|
2003-05-31 10:52:15 +00:00
|
|
|
while($i<$nb)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Get next character
|
|
|
|
$c = $s[$i];
|
2003-05-31 10:52:15 +00:00
|
|
|
if($c=="\n")
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Explicit line break
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->ws>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ws = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('0 Tw');
|
|
|
|
}
|
|
|
|
$this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);
|
|
|
|
$i++;
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = -1;
|
|
|
|
$j = $i;
|
|
|
|
$l = 0;
|
|
|
|
$ns = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
$nl++;
|
2005-06-12 16:13:26 +00:00
|
|
|
if($border && $nl==2)
|
2011-10-14 17:13:05 +00:00
|
|
|
$b = $b2;
|
2003-05-31 10:52:15 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if($c==' ')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = $i;
|
|
|
|
$ls = $l;
|
2003-05-31 10:52:15 +00:00
|
|
|
$ns++;
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$l += $cw[$c];
|
2003-05-31 10:52:15 +00:00
|
|
|
if($l>$wmax)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Automatic line break
|
2003-05-31 10:52:15 +00:00
|
|
|
if($sep==-1)
|
|
|
|
{
|
|
|
|
if($i==$j)
|
|
|
|
$i++;
|
|
|
|
if($this->ws>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ws = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('0 Tw');
|
|
|
|
}
|
|
|
|
$this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if($align=='J')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ws = ($ns>1) ? ($wmax-$ls)/1000*$this->FontSize/($ns-1) : 0;
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('%.3F Tw',$this->ws*$this->k));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
$this->Cell($w,$h,substr($s,$j,$sep-$j),$b,2,$align,$fill);
|
2011-10-14 17:13:05 +00:00
|
|
|
$i = $sep+1;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = -1;
|
|
|
|
$j = $i;
|
|
|
|
$l = 0;
|
|
|
|
$ns = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
$nl++;
|
2005-06-12 16:13:26 +00:00
|
|
|
if($border && $nl==2)
|
2011-10-14 17:13:05 +00:00
|
|
|
$b = $b2;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
$i++;
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// Last chunk
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->ws>0)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->ws = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('0 Tw');
|
|
|
|
}
|
2005-06-12 16:13:26 +00:00
|
|
|
if($border && strpos($border,'B')!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$b .= 'B';
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->Cell($w,$h,substr($s,$j,$i-$j),$b,2,$align,$fill);
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $this->lMargin;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Write($h, $txt, $link='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// 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;
|
2003-05-31 10:52:15 +00:00
|
|
|
while($i<$nb)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Get next character
|
|
|
|
$c = $s[$i];
|
2003-05-31 10:52:15 +00:00
|
|
|
if($c=="\n")
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Explicit line break
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->Cell($w,$h,substr($s,$j,$i-$j),0,2,'',0,$link);
|
|
|
|
$i++;
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = -1;
|
|
|
|
$j = $i;
|
|
|
|
$l = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($nl==1)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $this->lMargin;
|
|
|
|
$w = $this->w-$this->rMargin-$this->x;
|
|
|
|
$wmax = ($w-2*$this->cMargin)*1000/$this->FontSize;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
$nl++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if($c==' ')
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = $i;
|
|
|
|
$l += $cw[$c];
|
2003-05-31 10:52:15 +00:00
|
|
|
if($l>$wmax)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Automatic line break
|
2003-05-31 10:52:15 +00:00
|
|
|
if($sep==-1)
|
|
|
|
{
|
|
|
|
if($this->x>$this->lMargin)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// 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;
|
2003-05-31 10:52:15 +00:00
|
|
|
$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);
|
2011-10-14 17:13:05 +00:00
|
|
|
$i = $sep+1;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$sep = -1;
|
|
|
|
$j = $i;
|
|
|
|
$l = 0;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($nl==1)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $this->lMargin;
|
|
|
|
$w = $this->w-$this->rMargin-$this->x;
|
|
|
|
$wmax = ($w-2*$this->cMargin)*1000/$this->FontSize;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
$nl++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$i++;
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// Last chunk
|
2003-05-31 10:52:15 +00:00
|
|
|
if($i!=$j)
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->Cell($l/1000*$this->FontSize,$h,substr($s,$j),0,0,'',0,$link);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Ln($h=null)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Line feed; default value is last cell height
|
|
|
|
$this->x = $this->lMargin;
|
2010-08-27 19:45:13 +00:00
|
|
|
if($h===null)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->y += $this->lasth;
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->y += $h;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function Image($file, $x=null, $y=null, $w=0, $h=0, $type='', $link='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Put an image on the page
|
2003-05-31 10:52:15 +00:00
|
|
|
if(!isset($this->images[$file]))
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// First use of this image, get info
|
2003-05-31 10:52:15 +00:00
|
|
|
if($type=='')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$pos = strrpos($file,'.');
|
2003-05-31 10:52:15 +00:00
|
|
|
if(!$pos)
|
|
|
|
$this->Error('Image file has no extension and no type was specified: '.$file);
|
2011-10-14 17:13:05 +00:00
|
|
|
$type = substr($file,$pos+1);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$type = strtolower($type);
|
2010-08-27 19:45:13 +00:00
|
|
|
if($type=='jpeg')
|
2011-10-14 17:13:05 +00:00
|
|
|
$type = 'jpg';
|
|
|
|
$mtd = '_parse'.$type;
|
2010-08-27 19:45:13 +00:00
|
|
|
if(!method_exists($this,$mtd))
|
|
|
|
$this->Error('Unsupported image type: '.$type);
|
2011-10-14 17:13:05 +00:00
|
|
|
$info = $this->$mtd($file);
|
|
|
|
$info['i'] = count($this->images)+1;
|
|
|
|
$this->images[$file] = $info;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$info = $this->images[$file];
|
|
|
|
|
|
|
|
// Automatic width and height calculation if needed
|
2005-06-12 16:13:26 +00:00
|
|
|
if($w==0 && $h==0)
|
2004-02-23 22:30:00 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Put image at 96 dpi
|
|
|
|
$w = -96;
|
|
|
|
$h = -96;
|
2004-02-23 22:30:00 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
if($w<0)
|
|
|
|
$w = -$info['w']*72/$w/$this->k;
|
|
|
|
if($h<0)
|
|
|
|
$h = -$info['h']*72/$h/$this->k;
|
|
|
|
if($w==0)
|
|
|
|
$w = $h*$info['w']/$info['h'];
|
|
|
|
if($h==0)
|
|
|
|
$h = $w*$info['h']/$info['w'];
|
|
|
|
|
|
|
|
// Flowing mode
|
2010-08-27 19:45:13 +00:00
|
|
|
if($y===null)
|
|
|
|
{
|
|
|
|
if($this->y+$h>$this->PageBreakTrigger && !$this->InHeader && !$this->InFooter && $this->AcceptPageBreak())
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Automatic page break
|
|
|
|
$x2 = $this->x;
|
|
|
|
$this->AddPage($this->CurOrientation,$this->CurPageSize);
|
|
|
|
$this->x = $x2;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$y = $this->y;
|
|
|
|
$this->y += $h;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
if($x===null)
|
2011-10-14 17:13:05 +00:00
|
|
|
$x = $this->x;
|
2010-08-27 19:45:13 +00:00
|
|
|
$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']));
|
2003-05-31 10:52:15 +00:00
|
|
|
if($link)
|
|
|
|
$this->Link($x,$y,$w,$h,$link);
|
|
|
|
}
|
|
|
|
|
|
|
|
function GetX()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Get x position
|
2003-05-31 10:52:15 +00:00
|
|
|
return $this->x;
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetX($x)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set x position
|
2003-05-31 10:52:15 +00:00
|
|
|
if($x>=0)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $x;
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->x = $this->w+$x;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function GetY()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Get y position
|
2003-05-31 10:52:15 +00:00
|
|
|
return $this->y;
|
|
|
|
}
|
|
|
|
|
|
|
|
function SetY($y)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set y position and reset x
|
|
|
|
$this->x = $this->lMargin;
|
2003-05-31 10:52:15 +00:00
|
|
|
if($y>=0)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->y = $y;
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->y = $this->h+$y;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function SetXY($x, $y)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Set x and y positions
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->SetY($y);
|
|
|
|
$this->SetX($x);
|
|
|
|
}
|
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
function Output($name='', $dest='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Output PDF to some destination
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->state<3)
|
|
|
|
$this->Close();
|
2011-10-14 17:13:05 +00:00
|
|
|
$dest = strtoupper($dest);
|
2004-02-23 22:30:00 +00:00
|
|
|
if($dest=='')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2004-02-23 22:30:00 +00:00
|
|
|
if($name=='')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$name = 'doc.pdf';
|
|
|
|
$dest = 'I';
|
2004-02-23 22:30:00 +00:00
|
|
|
}
|
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$dest = 'F';
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2004-02-23 22:30:00 +00:00
|
|
|
switch($dest)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2004-02-23 22:30:00 +00:00
|
|
|
case 'I':
|
2011-10-14 17:13:05 +00:00
|
|
|
// Send to standard output
|
|
|
|
$this->_checkoutput();
|
|
|
|
if(PHP_SAPI!='cli')
|
2004-02-23 22:30:00 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// We send to a browser
|
2005-06-12 16:13:26 +00:00
|
|
|
header('Content-Type: application/pdf');
|
2010-08-27 19:45:13 +00:00
|
|
|
header('Content-Disposition: inline; filename="'.$name.'"');
|
|
|
|
header('Cache-Control: private, max-age=0, must-revalidate');
|
|
|
|
header('Pragma: public');
|
2004-02-23 22:30:00 +00:00
|
|
|
}
|
|
|
|
echo $this->buffer;
|
|
|
|
break;
|
|
|
|
case 'D':
|
2011-10-14 17:13:05 +00:00
|
|
|
// Download file
|
|
|
|
$this->_checkoutput();
|
2010-08-27 19:45:13 +00:00
|
|
|
header('Content-Type: application/x-download');
|
|
|
|
header('Content-Disposition: attachment; filename="'.$name.'"');
|
|
|
|
header('Cache-Control: private, max-age=0, must-revalidate');
|
|
|
|
header('Pragma: public');
|
2003-05-31 10:52:15 +00:00
|
|
|
echo $this->buffer;
|
2004-02-23 22:30:00 +00:00
|
|
|
break;
|
|
|
|
case 'F':
|
2011-10-14 17:13:05 +00:00
|
|
|
// Save to local file
|
|
|
|
$f = fopen($name,'wb');
|
2003-05-31 10:52:15 +00:00
|
|
|
if(!$f)
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->Error('Unable to create output file: '.$name);
|
2003-05-31 10:52:15 +00:00
|
|
|
fwrite($f,$this->buffer,strlen($this->buffer));
|
|
|
|
fclose($f);
|
2004-02-23 22:30:00 +00:00
|
|
|
break;
|
|
|
|
case 'S':
|
2011-10-14 17:13:05 +00:00
|
|
|
// Return as a string
|
2004-02-23 22:30:00 +00:00
|
|
|
return $this->buffer;
|
|
|
|
default:
|
|
|
|
$this->Error('Incorrect output destination: '.$dest);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2004-02-23 22:30:00 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* *
|
|
|
|
* Protected methods *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
|
|
|
function _dochecks()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Check availability of %F
|
2010-08-27 19:45:13 +00:00
|
|
|
if(sprintf('%.1F',1.0)!='1.0')
|
|
|
|
$this->Error('This version of PHP is not supported');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Check mbstring overloading
|
2010-08-27 19:45:13 +00:00
|
|
|
if(ini_get('mbstring.func_overload') & 2)
|
|
|
|
$this->Error('mbstring overloading must be disabled');
|
|
|
|
}
|
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
function _checkoutput()
|
2010-08-27 19:45:13 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
if(PHP_SAPI!='cli')
|
|
|
|
{
|
|
|
|
if(headers_sent($file,$line))
|
|
|
|
$this->Error("Some data has already been output, can't send PDF file (output started at $file:$line)");
|
|
|
|
}
|
|
|
|
if(ob_get_length())
|
|
|
|
{
|
|
|
|
// The output buffer is not empty
|
|
|
|
if(preg_match('/^(\xEF\xBB\xBF)?\s*$/',ob_get_contents()))
|
|
|
|
{
|
|
|
|
// It contains only a UTF-8 BOM and/or whitespace, let's clean it
|
|
|
|
ob_clean();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$this->Error("Some data has already been output, can't send PDF file");
|
|
|
|
}
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
function _getpagesize($size)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
if(is_string($size))
|
|
|
|
{
|
|
|
|
$size = strtolower($size);
|
|
|
|
if(!isset($this->StdPageSizes[$size]))
|
|
|
|
$this->Error('Unknown page size: '.$size);
|
|
|
|
$a = $this->StdPageSizes[$size];
|
|
|
|
return array($a[0]/$this->k, $a[1]/$this->k);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if($size[0]>$size[1])
|
|
|
|
return array($size[1], $size[0]);
|
|
|
|
else
|
|
|
|
return $size;
|
|
|
|
}
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
function _beginpage($orientation, $size)
|
2010-08-27 19:45:13 +00:00
|
|
|
{
|
|
|
|
$this->page++;
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->pages[$this->page] = '';
|
|
|
|
$this->state = 2;
|
|
|
|
$this->x = $this->lMargin;
|
|
|
|
$this->y = $this->tMargin;
|
|
|
|
$this->FontFamily = '';
|
|
|
|
// Check page size and orientation
|
2010-08-27 19:45:13 +00:00
|
|
|
if($orientation=='')
|
2011-10-14 17:13:05 +00:00
|
|
|
$orientation = $this->DefOrientation;
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$orientation = strtoupper($orientation[0]);
|
|
|
|
if($size=='')
|
|
|
|
$size = $this->DefPageSize;
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$size = $this->_getpagesize($size);
|
|
|
|
if($orientation!=$this->CurOrientation || $size[0]!=$this->CurPageSize[0] || $size[1]!=$this->CurPageSize[1])
|
2010-08-27 19:45:13 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// New size or orientation
|
2010-08-27 19:45:13 +00:00
|
|
|
if($orientation=='P')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->w = $size[0];
|
|
|
|
$this->h = $size[1];
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->w = $size[1];
|
|
|
|
$this->h = $size[0];
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->wPt = $this->w*$this->k;
|
|
|
|
$this->hPt = $this->h*$this->k;
|
|
|
|
$this->PageBreakTrigger = $this->h-$this->bMargin;
|
|
|
|
$this->CurOrientation = $orientation;
|
|
|
|
$this->CurPageSize = $size;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
if($orientation!=$this->DefOrientation || $size[0]!=$this->DefPageSize[0] || $size[1]!=$this->DefPageSize[1])
|
|
|
|
$this->PageSizes[$this->page] = array($this->wPt, $this->hPt);
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function _endpage()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->state = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _loadfont($font)
|
|
|
|
{
|
|
|
|
// Load a font definition file from the font directory
|
|
|
|
include($this->fontpath.$font);
|
|
|
|
$a = get_defined_vars();
|
|
|
|
if(!isset($a['name']))
|
|
|
|
$this->Error('Could not include font definition file');
|
|
|
|
return $a;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function _escape($s)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Escape special characters in strings
|
|
|
|
$s = str_replace('\\','\\\\',$s);
|
|
|
|
$s = str_replace('(','\\(',$s);
|
|
|
|
$s = str_replace(')','\\)',$s);
|
|
|
|
$s = str_replace("\r",'\\r',$s);
|
2010-08-27 19:45:13 +00:00
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _textstring($s)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Format a text string
|
2010-08-27 19:45:13 +00:00
|
|
|
return '('.$this->_escape($s).')';
|
|
|
|
}
|
|
|
|
|
|
|
|
function _UTF8toUTF16($s)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Convert UTF-8 to UTF-16BE with BOM
|
|
|
|
$res = "\xFE\xFF";
|
|
|
|
$nb = strlen($s);
|
|
|
|
$i = 0;
|
2010-08-27 19:45:13 +00:00
|
|
|
while($i<$nb)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$c1 = ord($s[$i++]);
|
2010-08-27 19:45:13 +00:00
|
|
|
if($c1>=224)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// 3-byte character
|
|
|
|
$c2 = ord($s[$i++]);
|
|
|
|
$c3 = ord($s[$i++]);
|
|
|
|
$res .= chr((($c1 & 0x0F)<<4) + (($c2 & 0x3C)>>2));
|
|
|
|
$res .= chr((($c2 & 0x03)<<6) + ($c3 & 0x3F));
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
elseif($c1>=192)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// 2-byte character
|
|
|
|
$c2 = ord($s[$i++]);
|
|
|
|
$res .= chr(($c1 & 0x1C)>>2);
|
|
|
|
$res .= chr((($c1 & 0x03)<<6) + ($c2 & 0x3F));
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Single-byte character
|
|
|
|
$res .= "\0".chr($c1);
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _dounderline($x, $y, $txt)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Underline text
|
|
|
|
$up = $this->CurrentFont['up'];
|
|
|
|
$ut = $this->CurrentFont['ut'];
|
|
|
|
$w = $this->GetStringWidth($txt)+$this->ws*substr_count($txt,' ');
|
2010-08-27 19:45:13 +00:00
|
|
|
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)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Extract info from a JPEG file
|
|
|
|
$a = getimagesize($file);
|
2010-08-27 19:45:13 +00:00
|
|
|
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']) || $a['channels']==3)
|
2011-10-14 17:13:05 +00:00
|
|
|
$colspace = 'DeviceRGB';
|
2010-08-27 19:45:13 +00:00
|
|
|
elseif($a['channels']==4)
|
2011-10-14 17:13:05 +00:00
|
|
|
$colspace = 'DeviceCMYK';
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$colspace = 'DeviceGray';
|
|
|
|
$bpc = isset($a['bits']) ? $a['bits'] : 8;
|
|
|
|
$data = file_get_contents($file);
|
2010-08-27 19:45:13 +00:00
|
|
|
return array('w'=>$a[0], 'h'=>$a[1], 'cs'=>$colspace, 'bpc'=>$bpc, 'f'=>'DCTDecode', 'data'=>$data);
|
|
|
|
}
|
|
|
|
|
|
|
|
function _parsepng($file)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Extract info from a PNG file
|
|
|
|
$f = fopen($file,'rb');
|
2010-08-27 19:45:13 +00:00
|
|
|
if(!$f)
|
|
|
|
$this->Error('Can\'t open image file: '.$file);
|
2011-10-14 17:13:05 +00:00
|
|
|
$info = $this->_parsepngstream($f,$file);
|
|
|
|
fclose($f);
|
|
|
|
return $info;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _parsepngstream($f, $file)
|
|
|
|
{
|
|
|
|
// Check signature
|
2010-08-27 19:45:13 +00:00
|
|
|
if($this->_readstream($f,8)!=chr(137).'PNG'.chr(13).chr(10).chr(26).chr(10))
|
|
|
|
$this->Error('Not a PNG file: '.$file);
|
2011-10-14 17:13:05 +00:00
|
|
|
|
|
|
|
// Read header chunk
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_readstream($f,4);
|
|
|
|
if($this->_readstream($f,4)!='IHDR')
|
|
|
|
$this->Error('Incorrect PNG file: '.$file);
|
2011-10-14 17:13:05 +00:00
|
|
|
$w = $this->_readint($f);
|
|
|
|
$h = $this->_readint($f);
|
|
|
|
$bpc = ord($this->_readstream($f,1));
|
2010-08-27 19:45:13 +00:00
|
|
|
if($bpc>8)
|
|
|
|
$this->Error('16-bit depth not supported: '.$file);
|
2011-10-14 17:13:05 +00:00
|
|
|
$ct = ord($this->_readstream($f,1));
|
|
|
|
if($ct==0 || $ct==4)
|
|
|
|
$colspace = 'DeviceGray';
|
|
|
|
elseif($ct==2 || $ct==6)
|
|
|
|
$colspace = 'DeviceRGB';
|
2010-08-27 19:45:13 +00:00
|
|
|
elseif($ct==3)
|
2011-10-14 17:13:05 +00:00
|
|
|
$colspace = 'Indexed';
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->Error('Unknown color type: '.$file);
|
2010-08-27 19:45:13 +00:00
|
|
|
if(ord($this->_readstream($f,1))!=0)
|
|
|
|
$this->Error('Unknown compression method: '.$file);
|
|
|
|
if(ord($this->_readstream($f,1))!=0)
|
|
|
|
$this->Error('Unknown filter method: '.$file);
|
|
|
|
if(ord($this->_readstream($f,1))!=0)
|
|
|
|
$this->Error('Interlacing not supported: '.$file);
|
|
|
|
$this->_readstream($f,4);
|
2011-10-14 17:13:05 +00:00
|
|
|
$dp = '/Predictor 15 /Colors '.($colspace=='DeviceRGB' ? 3 : 1).' /BitsPerComponent '.$bpc.' /Columns '.$w;
|
|
|
|
|
|
|
|
// Scan chunks looking for palette, transparency and image data
|
|
|
|
$pal = '';
|
|
|
|
$trns = '';
|
|
|
|
$data = '';
|
2010-08-27 19:45:13 +00:00
|
|
|
do
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$n = $this->_readint($f);
|
|
|
|
$type = $this->_readstream($f,4);
|
2010-08-27 19:45:13 +00:00
|
|
|
if($type=='PLTE')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Read palette
|
|
|
|
$pal = $this->_readstream($f,$n);
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_readstream($f,4);
|
|
|
|
}
|
|
|
|
elseif($type=='tRNS')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Read transparency info
|
|
|
|
$t = $this->_readstream($f,$n);
|
2010-08-27 19:45:13 +00:00
|
|
|
if($ct==0)
|
2011-10-14 17:13:05 +00:00
|
|
|
$trns = array(ord(substr($t,1,1)));
|
2010-08-27 19:45:13 +00:00
|
|
|
elseif($ct==2)
|
2011-10-14 17:13:05 +00:00
|
|
|
$trns = array(ord(substr($t,1,1)), ord(substr($t,3,1)), ord(substr($t,5,1)));
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$pos = strpos($t,chr(0));
|
2010-08-27 19:45:13 +00:00
|
|
|
if($pos!==false)
|
2011-10-14 17:13:05 +00:00
|
|
|
$trns = array($pos);
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
$this->_readstream($f,4);
|
|
|
|
}
|
|
|
|
elseif($type=='IDAT')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Read image data block
|
|
|
|
$data .= $this->_readstream($f,$n);
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_readstream($f,4);
|
|
|
|
}
|
|
|
|
elseif($type=='IEND')
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
$this->_readstream($f,$n+4);
|
|
|
|
}
|
|
|
|
while($n);
|
2011-10-14 17:13:05 +00:00
|
|
|
|
2010-08-27 19:45:13 +00:00
|
|
|
if($colspace=='Indexed' && empty($pal))
|
|
|
|
$this->Error('Missing palette in '.$file);
|
2011-10-14 17:13:05 +00:00
|
|
|
$info = array('w'=>$w, 'h'=>$h, 'cs'=>$colspace, 'bpc'=>$bpc, 'f'=>'FlateDecode', 'dp'=>$dp, 'pal'=>$pal, 'trns'=>$trns);
|
|
|
|
if($ct>=4)
|
|
|
|
{
|
|
|
|
// Extract alpha channel
|
|
|
|
if(!function_exists('gzuncompress'))
|
|
|
|
$this->Error('Zlib not available, can\'t handle alpha channel: '.$file);
|
|
|
|
$data = gzuncompress($data);
|
|
|
|
$color = '';
|
|
|
|
$alpha = '';
|
|
|
|
if($ct==4)
|
|
|
|
{
|
|
|
|
// Gray image
|
|
|
|
$len = 2*$w;
|
|
|
|
for($i=0;$i<$h;$i++)
|
|
|
|
{
|
|
|
|
$pos = (1+$len)*$i;
|
|
|
|
$color .= $data[$pos];
|
|
|
|
$alpha .= $data[$pos];
|
|
|
|
$line = substr($data,$pos+1,$len);
|
|
|
|
$color .= preg_replace('/(.)./s','$1',$line);
|
|
|
|
$alpha .= preg_replace('/.(.)/s','$1',$line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// RGB image
|
|
|
|
$len = 4*$w;
|
|
|
|
for($i=0;$i<$h;$i++)
|
|
|
|
{
|
|
|
|
$pos = (1+$len)*$i;
|
|
|
|
$color .= $data[$pos];
|
|
|
|
$alpha .= $data[$pos];
|
|
|
|
$line = substr($data,$pos+1,$len);
|
|
|
|
$color .= preg_replace('/(.{3})./s','$1',$line);
|
|
|
|
$alpha .= preg_replace('/.{3}(.)/s','$1',$line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unset($data);
|
|
|
|
$data = gzcompress($color);
|
|
|
|
$info['smask'] = gzcompress($alpha);
|
|
|
|
if($this->PDFVersion<'1.4')
|
|
|
|
$this->PDFVersion = '1.4';
|
|
|
|
}
|
|
|
|
$info['data'] = $data;
|
|
|
|
return $info;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function _readstream($f, $n)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Read n bytes from stream
|
|
|
|
$res = '';
|
2010-08-27 19:45:13 +00:00
|
|
|
while($n>0 && !feof($f))
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$s = fread($f,$n);
|
2010-08-27 19:45:13 +00:00
|
|
|
if($s===false)
|
|
|
|
$this->Error('Error while reading stream');
|
2011-10-14 17:13:05 +00:00
|
|
|
$n -= strlen($s);
|
|
|
|
$res .= $s;
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
if($n>0)
|
|
|
|
$this->Error('Unexpected end of stream');
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _readint($f)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Read a 4-byte integer from stream
|
|
|
|
$a = unpack('Ni',$this->_readstream($f,4));
|
2010-08-27 19:45:13 +00:00
|
|
|
return $a['i'];
|
|
|
|
}
|
|
|
|
|
|
|
|
function _parsegif($file)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Extract info from a GIF file (via PNG conversion)
|
2010-08-27 19:45:13 +00:00
|
|
|
if(!function_exists('imagepng'))
|
|
|
|
$this->Error('GD extension is required for GIF support');
|
|
|
|
if(!function_exists('imagecreatefromgif'))
|
|
|
|
$this->Error('GD has no GIF read support');
|
2011-10-14 17:13:05 +00:00
|
|
|
$im = imagecreatefromgif($file);
|
2010-08-27 19:45:13 +00:00
|
|
|
if(!$im)
|
|
|
|
$this->Error('Missing or incorrect image file: '.$file);
|
|
|
|
imageinterlace($im,0);
|
2011-10-14 17:13:05 +00:00
|
|
|
$f = @fopen('php://temp','rb+');
|
|
|
|
if($f)
|
|
|
|
{
|
|
|
|
// Perform conversion in memory
|
|
|
|
ob_start();
|
|
|
|
imagepng($im);
|
|
|
|
$data = ob_get_clean();
|
|
|
|
imagedestroy($im);
|
|
|
|
fwrite($f,$data);
|
|
|
|
rewind($f);
|
|
|
|
$info = $this->_parsepngstream($f,$file);
|
|
|
|
fclose($f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Use temporary file
|
|
|
|
$tmp = tempnam('.','gif');
|
|
|
|
if(!$tmp)
|
|
|
|
$this->Error('Unable to create a temporary file');
|
|
|
|
if(!imagepng($im,$tmp))
|
|
|
|
$this->Error('Error while saving to temporary file');
|
|
|
|
imagedestroy($im);
|
|
|
|
$info = $this->_parsepng($tmp);
|
|
|
|
unlink($tmp);
|
|
|
|
}
|
2010-08-27 19:45:13 +00:00
|
|
|
return $info;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _newobj()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Begin a new object
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->n++;
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->offsets[$this->n] = strlen($this->buffer);
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out($this->n.' 0 obj');
|
|
|
|
}
|
|
|
|
|
|
|
|
function _putstream($s)
|
|
|
|
{
|
|
|
|
$this->_out('stream');
|
|
|
|
$this->_out($s);
|
|
|
|
$this->_out('endstream');
|
|
|
|
}
|
|
|
|
|
|
|
|
function _out($s)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Add a line to the document
|
2010-08-27 19:45:13 +00:00
|
|
|
if($this->state==2)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->pages[$this->page] .= $s."\n";
|
2010-08-27 19:45:13 +00:00
|
|
|
else
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->buffer .= $s."\n";
|
2010-08-27 19:45:13 +00:00
|
|
|
}
|
|
|
|
|
2003-05-31 10:52:15 +00:00
|
|
|
function _putpages()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$nb = $this->page;
|
2003-05-31 10:52:15 +00:00
|
|
|
if(!empty($this->AliasNbPages))
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Replace number of pages
|
2003-05-31 10:52:15 +00:00
|
|
|
for($n=1;$n<=$nb;$n++)
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->pages[$n] = str_replace($this->AliasNbPages,$nb,$this->pages[$n]);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
if($this->DefOrientation=='P')
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$wPt = $this->DefPageSize[0]*$this->k;
|
|
|
|
$hPt = $this->DefPageSize[1]*$this->k;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$wPt = $this->DefPageSize[1]*$this->k;
|
|
|
|
$hPt = $this->DefPageSize[0]*$this->k;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
|
2003-05-31 10:52:15 +00:00
|
|
|
for($n=1;$n<=$nb;$n++)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Page
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<</Type /Page');
|
|
|
|
$this->_out('/Parent 1 0 R');
|
2010-08-27 19:45:13 +00:00
|
|
|
if(isset($this->PageSizes[$n]))
|
|
|
|
$this->_out(sprintf('/MediaBox [0 0 %.2F %.2F]',$this->PageSizes[$n][0],$this->PageSizes[$n][1]));
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('/Resources 2 0 R');
|
|
|
|
if(isset($this->PageLinks[$n]))
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Links
|
|
|
|
$annots = '/Annots [';
|
2003-05-31 10:52:15 +00:00
|
|
|
foreach($this->PageLinks[$n] as $pl)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$rect = sprintf('%.2F %.2F %.2F %.2F',$pl[0],$pl[1],$pl[0]+$pl[2],$pl[1]-$pl[3]);
|
|
|
|
$annots .= '<</Type /Annot /Subtype /Link /Rect ['.$rect.'] /Border [0 0 0] ';
|
2003-05-31 10:52:15 +00:00
|
|
|
if(is_string($pl[4]))
|
2011-10-14 17:13:05 +00:00
|
|
|
$annots .= '/A <</S /URI /URI '.$this->_textstring($pl[4]).'>>>>';
|
2003-05-31 10:52:15 +00:00
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$l = $this->links[$pl[4]];
|
|
|
|
$h = isset($this->PageSizes[$l[0]]) ? $this->PageSizes[$l[0]][1] : $hPt;
|
|
|
|
$annots .= sprintf('/Dest [%d 0 R /XYZ 0 %.2F null]>>',1+2*$l[0],$h-$l[1]*$this->k);
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->_out($annots.']');
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
if($this->PDFVersion>'1.3')
|
|
|
|
$this->_out('/Group <</Type /Group /S /Transparency /CS /DeviceRGB>>');
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('/Contents '.($this->n+1).' 0 R>>');
|
|
|
|
$this->_out('endobj');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Page content
|
|
|
|
$p = ($this->compress) ? gzcompress($this->pages[$n]) : $this->pages[$n];
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<<'.$filter.'/Length '.strlen($p).'>>');
|
|
|
|
$this->_putstream($p);
|
|
|
|
$this->_out('endobj');
|
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// Pages root
|
|
|
|
$this->offsets[1] = strlen($this->buffer);
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('1 0 obj');
|
|
|
|
$this->_out('<</Type /Pages');
|
2011-10-14 17:13:05 +00:00
|
|
|
$kids = '/Kids [';
|
2003-05-31 10:52:15 +00:00
|
|
|
for($i=0;$i<$nb;$i++)
|
2011-10-14 17:13:05 +00:00
|
|
|
$kids .= (3+2*$i).' 0 R ';
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out($kids.']');
|
|
|
|
$this->_out('/Count '.$nb);
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out(sprintf('/MediaBox [0 0 %.2F %.2F]',$wPt,$hPt));
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('endobj');
|
|
|
|
}
|
|
|
|
|
|
|
|
function _putfonts()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$nf = $this->n;
|
2003-05-31 10:52:15 +00:00
|
|
|
foreach($this->diffs as $diff)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Encodings
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<</Type /Encoding /BaseEncoding /WinAnsiEncoding /Differences ['.$diff.']>>');
|
|
|
|
$this->_out('endobj');
|
|
|
|
}
|
|
|
|
foreach($this->FontFiles as $file=>$info)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Font file embedding
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->FontFiles[$file]['n'] = $this->n;
|
|
|
|
$font = file_get_contents($this->fontpath.$file,true);
|
|
|
|
if(!$font)
|
|
|
|
$this->Error('Font file not found: '.$file);
|
|
|
|
$compressed = (substr($file,-2)=='.z');
|
2005-06-12 16:13:26 +00:00
|
|
|
if(!$compressed && isset($info['length2']))
|
2011-10-14 17:13:05 +00:00
|
|
|
$font = substr($font,6,$info['length1']).substr($font,6+$info['length1']+6,$info['length2']);
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->_out('<</Length '.strlen($font));
|
|
|
|
if($compressed)
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('/Filter /FlateDecode');
|
|
|
|
$this->_out('/Length1 '.$info['length1']);
|
|
|
|
if(isset($info['length2']))
|
|
|
|
$this->_out('/Length2 '.$info['length2'].' /Length3 0');
|
|
|
|
$this->_out('>>');
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->_putstream($font);
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('endobj');
|
|
|
|
}
|
|
|
|
foreach($this->fonts as $k=>$font)
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Font objects
|
|
|
|
$this->fonts[$k]['n'] = $this->n+1;
|
|
|
|
$type = $font['type'];
|
|
|
|
$name = $font['name'];
|
|
|
|
if($type=='Core')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Core font
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<</Type /Font');
|
|
|
|
$this->_out('/BaseFont /'.$name);
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('/Subtype /Type1');
|
2005-06-12 16:13:26 +00:00
|
|
|
if($name!='Symbol' && $name!='ZapfDingbats')
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('/Encoding /WinAnsiEncoding');
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('endobj');
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2005-06-12 16:13:26 +00:00
|
|
|
elseif($type=='Type1' || $type=='TrueType')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Additional Type1 or TrueType/OpenType font
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<</Type /Font');
|
|
|
|
$this->_out('/BaseFont /'.$name);
|
|
|
|
$this->_out('/Subtype /'.$type);
|
|
|
|
$this->_out('/FirstChar 32 /LastChar 255');
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('/Widths '.($this->n+1).' 0 R');
|
|
|
|
$this->_out('/FontDescriptor '.($this->n+2).' 0 R');
|
2011-10-14 17:13:05 +00:00
|
|
|
if(isset($font['diffn']))
|
|
|
|
$this->_out('/Encoding '.($nf+$font['diffn']).' 0 R');
|
|
|
|
else
|
|
|
|
$this->_out('/Encoding /WinAnsiEncoding');
|
2004-02-23 22:30:00 +00:00
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('endobj');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Widths
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
2011-10-14 17:13:05 +00:00
|
|
|
$cw = &$font['cw'];
|
|
|
|
$s = '[';
|
2003-05-31 10:52:15 +00:00
|
|
|
for($i=32;$i<=255;$i++)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= $cw[chr($i)].' ';
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out($s.']');
|
|
|
|
$this->_out('endobj');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Descriptor
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
2011-10-14 17:13:05 +00:00
|
|
|
$s = '<</Type /FontDescriptor /FontName /'.$name;
|
2003-05-31 10:52:15 +00:00
|
|
|
foreach($font['desc'] as $k=>$v)
|
2011-10-14 17:13:05 +00:00
|
|
|
$s .= ' /'.$k.' '.$v;
|
|
|
|
if(!empty($font['file']))
|
|
|
|
$s .= ' /FontFile'.($type=='Type1' ? '' : '2').' '.$this->FontFiles[$font['file']]['n'].' 0 R';
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out($s.'>>');
|
|
|
|
$this->_out('endobj');
|
|
|
|
}
|
2004-02-23 22:30:00 +00:00
|
|
|
else
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
// Allow for additional types
|
|
|
|
$mtd = '_put'.strtolower($type);
|
2004-02-23 22:30:00 +00:00
|
|
|
if(!method_exists($this,$mtd))
|
|
|
|
$this->Error('Unsupported font type: '.$type);
|
|
|
|
$this->$mtd($font);
|
|
|
|
}
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function _putimages()
|
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
foreach(array_keys($this->images) as $file)
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->_putimage($this->images[$file]);
|
2004-02-23 22:30:00 +00:00
|
|
|
unset($this->images[$file]['data']);
|
2011-10-14 17:13:05 +00:00
|
|
|
unset($this->images[$file]['smask']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function _putimage(&$info)
|
|
|
|
{
|
|
|
|
$this->_newobj();
|
|
|
|
$info['n'] = $this->n;
|
|
|
|
$this->_out('<</Type /XObject');
|
|
|
|
$this->_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']);
|
|
|
|
if(isset($info['f']))
|
|
|
|
$this->_out('/Filter /'.$info['f']);
|
|
|
|
if(isset($info['dp']))
|
|
|
|
$this->_out('/DecodeParms <<'.$info['dp'].'>>');
|
|
|
|
if(isset($info['trns']) && is_array($info['trns']))
|
|
|
|
{
|
|
|
|
$trns = '';
|
|
|
|
for($i=0;$i<count($info['trns']);$i++)
|
|
|
|
$trns .= $info['trns'][$i].' '.$info['trns'][$i].' ';
|
|
|
|
$this->_out('/Mask ['.$trns.']');
|
|
|
|
}
|
|
|
|
if(isset($info['smask']))
|
|
|
|
$this->_out('/SMask '.($this->n+1).' 0 R');
|
|
|
|
$this->_out('/Length '.strlen($info['data']).'>>');
|
|
|
|
$this->_putstream($info['data']);
|
|
|
|
$this->_out('endobj');
|
|
|
|
// Soft mask
|
|
|
|
if(isset($info['smask']))
|
|
|
|
{
|
|
|
|
$dp = '/Predictor 15 /Colors 1 /BitsPerComponent 8 /Columns '.$info['w'];
|
|
|
|
$smask = array('w'=>$info['w'], 'h'=>$info['h'], 'cs'=>'DeviceGray', 'bpc'=>8, 'f'=>$info['f'], 'dp'=>$dp, 'data'=>$info['smask']);
|
|
|
|
$this->_putimage($smask);
|
|
|
|
}
|
|
|
|
// Palette
|
|
|
|
if($info['cs']=='Indexed')
|
|
|
|
{
|
|
|
|
$filter = ($this->compress) ? '/Filter /FlateDecode ' : '';
|
|
|
|
$pal = ($this->compress) ? gzcompress($info['pal']) : $info['pal'];
|
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<<'.$filter.'/Length '.strlen($pal).'>>');
|
|
|
|
$this->_putstream($pal);
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('endobj');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-12 16:13:26 +00:00
|
|
|
function _putxobjectdict()
|
|
|
|
{
|
|
|
|
foreach($this->images as $image)
|
|
|
|
$this->_out('/I'.$image['i'].' '.$image['n'].' 0 R');
|
|
|
|
}
|
|
|
|
|
|
|
|
function _putresourcedict()
|
|
|
|
{
|
|
|
|
$this->_out('/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]');
|
|
|
|
$this->_out('/Font <<');
|
|
|
|
foreach($this->fonts as $font)
|
|
|
|
$this->_out('/F'.$font['i'].' '.$font['n'].' 0 R');
|
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('/XObject <<');
|
|
|
|
$this->_putxobjectdict();
|
|
|
|
$this->_out('>>');
|
|
|
|
}
|
|
|
|
|
2003-05-31 10:52:15 +00:00
|
|
|
function _putresources()
|
|
|
|
{
|
|
|
|
$this->_putfonts();
|
|
|
|
$this->_putimages();
|
2011-10-14 17:13:05 +00:00
|
|
|
// Resource dictionary
|
|
|
|
$this->offsets[2] = strlen($this->buffer);
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('2 0 obj');
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->_out('<<');
|
|
|
|
$this->_putresourcedict();
|
2003-05-31 10:52:15 +00:00
|
|
|
$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));
|
2010-08-27 19:45:13 +00:00
|
|
|
$this->_out('/CreationDate '.$this->_textstring('D:'.@date('YmdHis')));
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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))
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->_out('/OpenAction [3 0 R /XYZ null null '.sprintf('%.2F',$this->ZoomMode/100).']');
|
2003-05-31 10:52:15 +00:00
|
|
|
if($this->LayoutMode=='single')
|
|
|
|
$this->_out('/PageLayout /SinglePage');
|
|
|
|
elseif($this->LayoutMode=='continuous')
|
|
|
|
$this->_out('/PageLayout /OneColumn');
|
|
|
|
elseif($this->LayoutMode=='two')
|
|
|
|
$this->_out('/PageLayout /TwoColumnLeft');
|
|
|
|
}
|
|
|
|
|
2005-06-12 16:13:26 +00:00
|
|
|
function _putheader()
|
|
|
|
{
|
|
|
|
$this->_out('%PDF-'.$this->PDFVersion);
|
|
|
|
}
|
|
|
|
|
2003-05-31 10:52:15 +00:00
|
|
|
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()
|
|
|
|
{
|
2005-06-12 16:13:26 +00:00
|
|
|
$this->_putheader();
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_putpages();
|
|
|
|
$this->_putresources();
|
2011-10-14 17:13:05 +00:00
|
|
|
// Info
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<<');
|
|
|
|
$this->_putinfo();
|
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('endobj');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Catalog
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_newobj();
|
|
|
|
$this->_out('<<');
|
|
|
|
$this->_putcatalog();
|
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('endobj');
|
2011-10-14 17:13:05 +00:00
|
|
|
// Cross-ref
|
|
|
|
$o = strlen($this->buffer);
|
2003-05-31 10:52:15 +00:00
|
|
|
$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]));
|
2011-10-14 17:13:05 +00:00
|
|
|
// Trailer
|
2003-05-31 10:52:15 +00:00
|
|
|
$this->_out('trailer');
|
|
|
|
$this->_out('<<');
|
|
|
|
$this->_puttrailer();
|
|
|
|
$this->_out('>>');
|
|
|
|
$this->_out('startxref');
|
|
|
|
$this->_out($o);
|
|
|
|
$this->_out('%%EOF');
|
2011-10-14 17:13:05 +00:00
|
|
|
$this->state = 3;
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
2011-10-14 17:13:05 +00:00
|
|
|
// End of class
|
2003-05-31 10:52:15 +00:00
|
|
|
}
|
|
|
|
|
2011-10-14 17:13:05 +00:00
|
|
|
// Handle special IE contype request
|
2005-06-12 16:13:26 +00:00
|
|
|
if(isset($_SERVER['HTTP_USER_AGENT']) && $_SERVER['HTTP_USER_AGENT']=='contype')
|
2003-05-31 10:52:15 +00:00
|
|
|
{
|
2005-06-12 16:13:26 +00:00
|
|
|
header('Content-Type: application/pdf');
|
2003-05-31 10:52:15 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|