3 include_once('class.pdf.php');
5 class Cezpdf
extends Cpdf
{
6 //==============================================================================
7 // this class will take the basic interaction facilities of the Cpdf class
8 // and make more useful functions so that the user does not have to
9 // know all the ins and outs of pdf presentation to produce something pretty.
12 // there is no warranty, implied or otherwise with this software.
14 // version 009 (versioning is linked to class.pdf.php)
16 // released under a public domain licence.
18 // Wayne Munro, R&OS Ltd, http://www.ros.co.nz/pdf
19 //==============================================================================
21 var $ez=array('fontSize'=>10); // used for storing most of the page configuration parameters
22 var $y; // this is the current vertical positon on the page of the writing point, very important
23 var $ezPages=array(); // keep an array of the ids of the pages, making it easy to go back and add page numbers etc.
26 // ------------------------------------------------------------------------------
28 function Cezpdf($paper='a4',$orientation='portrait'){
29 // Assuming that people don't want to specify the paper size using the absolute coordinates
30 // allow a couple of options:
31 // orientation can be 'portrait' or 'landscape'
32 // or, to actually set the coordinates, then pass an array in as the first parameter.
33 // the defaults are as shown.
35 // -------------------------
36 // 2002-07-24 - Nicola Asuni (info@tecnick.com):
37 // Added new page formats (45 standard ISO paper formats and 4 american common formats)
38 // paper cordinates are calculated in this way: (inches * 72) where 1 inch = 2.54 cm
40 // Now you may also pass a 2 values array containing the page width and height in centimeters
41 // -------------------------
43 if (!is_array($paper)){
44 switch (strtoupper($paper)){
45 case '4A0': {$size = array(0,0,4767.87,6740.79); break;}
46 case '2A0': {$size = array(0,0,3370.39,4767.87); break;}
47 case 'A0': {$size = array(0,0,2383.94,3370.39); break;}
48 case 'A1': {$size = array(0,0,1683.78,2383.94); break;}
49 case 'A2': {$size = array(0,0,1190.55,1683.78); break;}
50 case 'A3': {$size = array(0,0,841.89,1190.55); break;}
51 case 'A4': default: {$size = array(0,0,595.28,841.89); break;}
52 case 'A5': {$size = array(0,0,419.53,595.28); break;}
53 case 'A6': {$size = array(0,0,297.64,419.53); break;}
54 case 'A7': {$size = array(0,0,209.76,297.64); break;}
55 case 'A8': {$size = array(0,0,147.40,209.76); break;}
56 case 'A9': {$size = array(0,0,104.88,147.40); break;}
57 case 'A10': {$size = array(0,0,73.70,104.88); break;}
58 case 'B0': {$size = array(0,0,2834.65,4008.19); break;}
59 case 'B1': {$size = array(0,0,2004.09,2834.65); break;}
60 case 'B2': {$size = array(0,0,1417.32,2004.09); break;}
61 case 'B3': {$size = array(0,0,1000.63,1417.32); break;}
62 case 'B4': {$size = array(0,0,708.66,1000.63); break;}
63 case 'B5': {$size = array(0,0,498.90,708.66); break;}
64 case 'B6': {$size = array(0,0,354.33,498.90); break;}
65 case 'B7': {$size = array(0,0,249.45,354.33); break;}
66 case 'B8': {$size = array(0,0,175.75,249.45); break;}
67 case 'B9': {$size = array(0,0,124.72,175.75); break;}
68 case 'B10': {$size = array(0,0,87.87,124.72); break;}
69 case 'C0': {$size = array(0,0,2599.37,3676.54); break;}
70 case 'C1': {$size = array(0,0,1836.85,2599.37); break;}
71 case 'C2': {$size = array(0,0,1298.27,1836.85); break;}
72 case 'C3': {$size = array(0,0,918.43,1298.27); break;}
73 case 'C4': {$size = array(0,0,649.13,918.43); break;}
74 case 'C5': {$size = array(0,0,459.21,649.13); break;}
75 case 'C6': {$size = array(0,0,323.15,459.21); break;}
76 case 'C7': {$size = array(0,0,229.61,323.15); break;}
77 case 'C8': {$size = array(0,0,161.57,229.61); break;}
78 case 'C9': {$size = array(0,0,113.39,161.57); break;}
79 case 'C10': {$size = array(0,0,79.37,113.39); break;}
80 case 'RA0': {$size = array(0,0,2437.80,3458.27); break;}
81 case 'RA1': {$size = array(0,0,1729.13,2437.80); break;}
82 case 'RA2': {$size = array(0,0,1218.90,1729.13); break;}
83 case 'RA3': {$size = array(0,0,864.57,1218.90); break;}
84 case 'RA4': {$size = array(0,0,609.45,864.57); break;}
85 case 'SRA0': {$size = array(0,0,2551.18,3628.35); break;}
86 case 'SRA1': {$size = array(0,0,1814.17,2551.18); break;}
87 case 'SRA2': {$size = array(0,0,1275.59,1814.17); break;}
88 case 'SRA3': {$size = array(0,0,907.09,1275.59); break;}
89 case 'SRA4': {$size = array(0,0,637.80,907.09); break;}
90 case 'LETTER': {$size = array(0,0,612.00,792.00); break;}
91 case 'LEGAL': {$size = array(0,0,612.00,1008.00); break;}
92 case 'EXECUTIVE': {$size = array(0,0,521.86,756.00); break;}
93 case 'FOLIO': {$size = array(0,0,612.00,936.00); break;}
95 switch (strtolower($orientation)){
103 if (count($paper)>2) {
104 // then an array was sent it to set the size
107 else { //size in centimeters has been passed
110 $size[2] = ( $paper[0] / 2.54 ) * 72;
111 $size[3] = ( $paper[1] / 2.54 ) * 72;
115 $this->ez
['pageWidth']=$size[2];
116 $this->ez
['pageHeight']=$size[3];
118 // also set the margins to some reasonable defaults
119 $this->ez
['topMargin']=30;
120 $this->ez
['bottomMargin']=30;
121 $this->ez
['leftMargin']=30;
122 $this->ez
['rightMargin']=30;
124 // set the current writing position to the top of the first page
125 $this->y
= $this->ez
['pageHeight']-$this->ez
['topMargin'];
126 // and get the ID of the page that was created during the instancing process.
127 $this->ezPages
[1]=$this->getFirstPageId();
128 $this->ezPageCount
=1;
131 // ------------------------------------------------------------------------------
132 // 2002-07-24: Nicola Asuni (info@tecnick.com)
133 // Set Margins in centimeters
134 function ezSetCmMargins($top,$bottom,$left,$right){
135 $top = ( $top / 2.54 ) * 72;
136 $bottom = ( $bottom / 2.54 ) * 72;
137 $left = ( $left / 2.54 ) * 72;
138 $right = ( $right / 2.54 ) * 72;
139 $this->ezSetMargins($top,$bottom,$left,$right);
141 // ------------------------------------------------------------------------------
144 function ezColumnsStart($options=array()){
145 // start from the current y-position, make the set number of columne
146 if (isset($this->ez
['columns']) && $this->ez
['columns']==1){
147 // if we are already in a column mode then just return.
150 $def=array('gap'=>10,'num'=>2);
151 foreach($def as $k=>$v){
152 if (!isset($options[$k])){
157 $this->ez
['columns']=array('on'=>1,'colNum'=>1);
159 // store the current margins
160 $this->ez
['columns']['margins']=array(
161 $this->ez
['leftMargin']
162 ,$this->ez
['rightMargin']
163 ,$this->ez
['topMargin']
164 ,$this->ez
['bottomMargin']
166 // and store the settings for the columns
167 $this->ez
['columns']['options']=$options;
168 // then reset the margins to suit the new columns
169 // safe enough to assume the first column here, but start from the current y-position
170 $this->ez
['topMargin']=$this->ez
['pageHeight']-$this->y
;
171 $width=($this->ez
['pageWidth']-$this->ez
['leftMargin']-$this->ez
['rightMargin']-($options['num']-1)*$options['gap'])/$options['num'];
172 $this->ez
['columns']['width']=$width;
173 $this->ez
['rightMargin']=$this->ez
['pageWidth']-$this->ez
['leftMargin']-$width;
176 // ------------------------------------------------------------------------------
177 function ezColumnsStop(){
178 if (isset($this->ez
['columns']) && $this->ez
['columns']['on']==1){
179 $this->ez
['columns']['on']=0;
180 $this->ez
['leftMargin']=$this->ez
['columns']['margins'][0];
181 $this->ez
['rightMargin']=$this->ez
['columns']['margins'][1];
182 $this->ez
['topMargin']=$this->ez
['columns']['margins'][2];
183 $this->ez
['bottomMargin']=$this->ez
['columns']['margins'][3];
186 // ------------------------------------------------------------------------------
187 function ezInsertMode($status=1,$pageNum=1,$pos='before'){
188 // puts the document into insert mode. new pages are inserted until this is re-called with status=0
189 // by default pages wil be inserted at the start of the document
192 if (isset($this->ezPages
[$pageNum])){
193 $this->ez
['insertMode']=1;
194 $this->ez
['insertOptions']=array('id'=>$this->ezPages
[$pageNum],'pos'=>$pos);
198 $this->ez
['insertMode']=0;
202 // ------------------------------------------------------------------------------
204 function ezNewPage(){
206 if (isset($this->ez
['columns']) && $this->ez
['columns']['on']==1){
207 // check if this is just going to a new column
208 // increment the column number
210 $this->ez
['columns']['colNum']++
;
211 //echo $this->ez['columns']['colNum'].'<br>';
212 if ($this->ez
['columns']['colNum'] <= $this->ez
['columns']['options']['num']){
213 // then just reset to the top of the next column
216 $this->ez
['columns']['colNum']=1;
217 $this->ez
['topMargin']=$this->ez
['columns']['margins'][2];
220 $width = $this->ez
['columns']['width'];
221 $this->ez
['leftMargin']=$this->ez
['columns']['margins'][0]+
($this->ez
['columns']['colNum']-1)*($this->ez
['columns']['options']['gap']+
$width);
222 $this->ez
['rightMargin']=$this->ez
['pageWidth']-$this->ez
['leftMargin']-$width;
224 //echo 'left='.$this->ez['leftMargin'].' right='.$this->ez['rightMargin'].'<br>';
227 // make a new page, setting the writing point back to the top
228 $this->y
= $this->ez
['pageHeight']-$this->ez
['topMargin'];
229 // make the new page with a call to the basic class.
230 $this->ezPageCount++
;
231 if (isset($this->ez
['insertMode']) && $this->ez
['insertMode']==1){
232 $id = $this->ezPages
[$this->ezPageCount
] = $this->newPage(1,$this->ez
['insertOptions']['id'],$this->ez
['insertOptions']['pos']);
233 // then manipulate the insert options so that inserted pages follow each other
234 $this->ez
['insertOptions']['id']=$id;
235 $this->ez
['insertOptions']['pos']='after';
237 $this->ezPages
[$this->ezPageCount
] = $this->newPage();
240 $this->y
= $this->ez
['pageHeight']-$this->ez
['topMargin'];
244 // ------------------------------------------------------------------------------
246 function ezSetMargins($top,$bottom,$left,$right){
247 // sets the margins to new values
248 $this->ez
['topMargin']=$top;
249 $this->ez
['bottomMargin']=$bottom;
250 $this->ez
['leftMargin']=$left;
251 $this->ez
['rightMargin']=$right;
252 // check to see if this means that the current writing position is outside the
254 if ($this->y
> $this->ez
['pageHeight']-$top){
256 $this->y
= $this->ez
['pageHeight']-$top;
258 if ( $this->y
< $bottom){
259 // then make a new page
264 // ------------------------------------------------------------------------------
266 function ezGetCurrentPageNumber(){
267 // return the strict numbering (1,2,3,4..) number of the current page
268 return $this->ezPageCount
;
271 // ------------------------------------------------------------------------------
273 function ezStartPageNumbers($x,$y,$size,$pos='left',$pattern='{PAGENUM} of {TOTALPAGENUM}',$num=''){
274 // put page numbers on the pages from here.
275 // place then on the 'pos' side of the coordinates (x,y).
276 // pos can be 'left' or 'right'
277 // use the given 'pattern' for display, where (PAGENUM} and {TOTALPAGENUM} are replaced
279 // if $num is set, then make the first page this number, the number of total pages will
280 // be adjusted to account for this.
281 // Adjust this function so that each time you 'start' page numbers then you effectively start a different batch
282 // return the number of the batch, so that they can be stopped in a different order if required.
283 if (!$pos ||
!strlen($pos)){
286 if (!$pattern ||
!strlen($pattern)){
287 $pattern='{PAGENUM} of {TOTALPAGENUM}';
289 if (!isset($this->ez
['pageNumbering'])){
290 $this->ez
['pageNumbering']=array();
292 $i = count($this->ez
['pageNumbering']);
293 $this->ez
['pageNumbering'][$i][$this->ezPageCount
]=array('x'=>$x,'y'=>$y,'pos'=>$pos,'pattern'=>$pattern,'num'=>$num,'size'=>$size);
297 // ------------------------------------------------------------------------------
299 function ezWhatPageNumber($pageNum,$i=0){
300 // given a particular generic page number (ie, document numbered sequentially from beginning),
301 // return the page number under a particular page numbering scheme ($i)
305 if (!isset($this->ez
['pageNumbering']))
307 $this->addMessage('WARNING: page numbering called for and wasn\'t started with ezStartPageNumbers');
310 foreach($this->ez
['pageNumbering'][$i] as $k=>$v){
314 if (strlen($v['num'])){
315 // a start was specified
318 $num=$pageNum-$startNum+
$start;
329 // ------------------------------------------------------------------------------
331 function ezStopPageNumbers($stopTotal=0,$next=0,$i=0){
332 // if stopTotal=1 then the totalling of pages for this number will stop too
333 // if $next=1, then do this page, but not the next, else do not do this page either
334 // if $i is set, then stop that particular pagenumbering sequence.
335 if (!isset($this->ez
['pageNumbering'])){
336 $this->ez
['pageNumbering']=array();
338 if ($next && isset($this->ez
['pageNumbering'][$i][$this->ezPageCount
]) && is_array($this->ez
['pageNumbering'][$i][$this->ezPageCount
])){
339 // then this has only just been started, this will over-write the start, and nothing will appear
340 // add a special command to the start block, telling it to stop as well
342 $this->ez
['pageNumbering'][$i][$this->ezPageCount
]['stoptn']=1;
344 $this->ez
['pageNumbering'][$i][$this->ezPageCount
]['stopn']=1;
348 $this->ez
['pageNumbering'][$i][$this->ezPageCount
]='stopt';
350 $this->ez
['pageNumbering'][$i][$this->ezPageCount
]='stop';
353 $this->ez
['pageNumbering'][$i][$this->ezPageCount
].='n';
358 // ------------------------------------------------------------------------------
360 function ezPRVTpageNumberSearch($lbl,&$tmp){
361 foreach($tmp as $i=>$v){
363 if (isset($v[$lbl])){
375 // ------------------------------------------------------------------------------
377 function ezPRVTaddPageNumbers(){
378 // this will go through the pageNumbering array and add the page numbers are required
379 if (isset($this->ez
['pageNumbering'])){
380 $totalPages1 = $this->ezPageCount
;
381 $tmp1=$this->ez
['pageNumbering'];
383 foreach($tmp1 as $i=>$tmp){
384 // do each of the page numbering systems
385 // firstly, find the total pages for this one
386 $k = $this->ezPRVTpageNumberSearch('stopt',$tmp);
390 $l = $this->ezPRVTpageNumberSearch('stoptn',$tmp);
394 $totalPages = $totalPages1;
397 foreach ($this->ezPages
as $pageNum=>$id){
398 if (isset($tmp[$pageNum])){
399 if (is_array($tmp[$pageNum])){
400 // then this must be starting page numbers
402 $info = $tmp[$pageNum];
403 $info['dnum']=$info['num']-$pageNum;
404 // also check for the special case of the numbering stopping and starting on the same page
405 if (isset($info['stopn']) ||
isset($info['stoptn']) ){
408 } else if ($tmp[$pageNum]=='stop' ||
$tmp[$pageNum]=='stopt'){
409 // then we are stopping page numbers
411 } else if ($status==1 && ($tmp[$pageNum]=='stoptn' ||
$tmp[$pageNum]=='stopn')){
412 // then we are stopping page numbers
417 // then add the page numbering to this page
418 if (strlen($info['num'])){
419 $num=$pageNum+
$info['dnum'];
423 $total = $totalPages+
$num-$pageNum;
424 $pat = str_replace('{PAGENUM}',$num,$info['pattern']);
425 $pat = str_replace('{TOTALPAGENUM}',$total,$pat);
426 $this->reopenObject($id);
427 switch($info['pos']){
429 $this->addText($info['x'],$info['y'],$info['size'],$pat);
432 $w=$this->getTextWidth($info['size'],$pat);
433 $this->addText($info['x']-$w,$info['y'],$info['size'],$pat);
436 $this->closeObject();
446 // ------------------------------------------------------------------------------
448 function ezPRVTcleanUp(){
449 $this->ezPRVTaddPageNumbers();
452 // ------------------------------------------------------------------------------
454 function ezStream($options=''){
455 $this->ezPRVTcleanUp();
456 $this->stream($options);
459 // ------------------------------------------------------------------------------
461 function ezOutput($options=0){
462 $this->ezPRVTcleanUp();
463 return $this->output($options);
466 // ------------------------------------------------------------------------------
469 // used to change the vertical position of the writing point.
471 if ( $this->y
< $this->ez
['bottomMargin']){
472 // then make a new page
477 // ------------------------------------------------------------------------------
479 function ezSetDy($dy,$mod=''){
480 // used to change the vertical position of the writing point.
481 // changes up by a positive increment, so enter a negative number to go
483 // if $mod is set to 'makeSpace' and a new page is forced, then the pointed will be moved
484 // down on the new page, this will allow space to be reserved for graphics etc.
486 if ( $this->y
< $this->ez
['bottomMargin']){
487 // then make a new page
489 if ($mod=='makeSpace'){
495 // ------------------------------------------------------------------------------
497 function ezPrvtTableDrawLines($pos,$gap,$x0,$x1,$y0,$y1,$y2,$col,$inner,$outer,$opt=1){
500 $this->setStrokeColor($col[0],$col[1],$col[2]);
505 if ($cnt==1 ||
$cnt==$n){
506 $this->setLineStyle($outer);
508 $this->setLineStyle($inner);
510 $this->line($x-$gap/2,$y0,$x-$gap/2,$y2);
511 if ($x>$x1){ $x1=$x; };
512 if ($x<$x0){ $x0=$x; };
514 $this->setLineStyle($outer);
515 $this->line($x0-$gap/2-$outer/2,$y0,$x1-$gap/2+
$outer/2,$y0);
516 // only do the second line if it is different to the first, AND each row does not have
518 if ($y0!=$y1 && $opt<2){
519 $this->line($x0-$gap/2,$y1,$x1-$gap/2,$y1);
521 $this->line($x0-$gap/2-$outer/2,$y2,$x1-$gap/2+
$outer/2,$y2);
524 // ------------------------------------------------------------------------------
526 function ezPrvtTableColumnHeadings($cols,$pos,$maxWidth,$height,$decender,$gap,$size,&$y,$optionsAll=array()){
527 // uses ezText to add the text, and returns the height taken by the largest heading
528 // this page will move the headings to a new page if they will not fit completely on this one
529 // transaction support will be used to implement this
531 if (isset($optionsAll['cols'])){
532 $options = $optionsAll['cols'];
538 $startPage = $this->ezPageCount
;
541 // $y is the position at which the top of the table should start, so the base
542 // of the first text, is $y-$height-$gap-$decender, but ezText starts by dropping $height
544 // the return from this function is the total cell height, including gaps, and $y is adjusted
545 // to be the postion of the bottom line
547 // begin the transaction
548 $this->transaction('start');
550 // $y-=$gap-$decender;
553 foreach($cols as $colName=>$colHeading){
555 if (isset($options[$colName]) && isset($options[$colName]['justification'])){
556 $justification = $options[$colName]['justification'];
558 $justification = 'left';
560 $this->ezText($colHeading,$size,array('aleft'=> $pos[$colName],'aright'=>($maxWidth[$colName]+
$pos[$colName]),'justification'=>$justification));
566 $y = $y - $mx - $gap +
$decender;
567 // $y -= $mx-$gap+$decender;
569 // now, if this has moved to a new page, then abort the transaction, move to a new page, and put it there
570 // do not check on the second time around, to avoid an infinite loop
571 if ($this->ezPageCount
!= $startPage && $secondGo==0){
572 $this->transaction('rewind');
574 $y = $this->y
- $gap-$decender;
581 $this->transaction('commit');
586 return $mx+
$gap*2-$decender;
589 // ------------------------------------------------------------------------------
591 function ezPrvtGetTextWidth($size,$text){
592 // will calculate the maximum width, taking into account that the text may be broken
595 $lines = explode("\n",$text);
596 foreach ($lines as $line){
597 $w = $this->getTextWidth($size,$line);
605 // ------------------------------------------------------------------------------
607 function ezTable(&$data,$cols='',$title='',$options=''){
608 // add a table of information to the pdf document
609 // $data is a two dimensional array
610 // $cols (optional) is an associative array, the keys are the names of the columns from $data
611 // to be presented (and in that order), the values are the titles to be given to the columns
612 // $title (optional) is the title to be put on the top of the table
614 // $options is an associative array which can contain:
615 // 'showLines'=> 0,1,2, default is 1 (show outside and top lines only), 2=> lines on each row
616 // 'showHeadings' => 0 or 1
617 // 'shaded'=> 0,1,2,3 default is 1 (1->alternate lines are shaded, 0->no shading, 2-> both shaded, second uses shadeCol2)
618 // 'shadeCol' => (r,g,b) array, defining the colour of the shading, default is (0.8,0.8,0.8)
619 // 'shadeCol2' => (r,g,b) array, defining the colour of the shading of the other blocks, default is (0.7,0.7,0.7)
621 // 'textCol' => (r,g,b) array, text colour
622 // 'titleFontSize' => 12
623 // 'rowGap' => 2 , the space added at the top and bottom of each row, between the text and the lines
624 // 'colGap' => 5 , the space on the left and right sides of each cell
625 // 'lineCol' => (r,g,b) array, defining the colour of the lines, default, black.
626 // 'xPos' => 'left','right','center','centre',or coordinate, reference coordinate in the x-direction
627 // 'xOrientation' => 'left','right','center','centre', position of the table w.r.t 'xPos'
628 // 'width'=> <number> which will specify the width of the table, if it turns out to not be this
629 // wide, then it will stretch the table to fit, if it is wider then each cell will be made
630 // proportionalty smaller, and the content may have to wrap.
631 // 'maxWidth'=> <number> similar to 'width', but will only make table smaller than it wants to be
632 // 'options' => array(<colname>=>array('justification'=>'left','width'=>100,'link'=>linkDataName),<colname>=>....)
633 // allow the setting of other paramaters for the individual columns
634 // 'minRowSpace'=> the minimum space between the bottom of each row and the bottom margin, in which a new row will be started
635 // if it is less, then a new page would be started, default=-100
636 // 'innerLineThickness'=>1
637 // 'outerLineThickness'=>1
638 // 'splitRows'=>0, 0 or 1, whether or not to allow the rows to be split across page boundaries
639 // 'protectRows'=>number, the number of rows to hold with the heading on page, ie, if there less than this number of
640 // rows on the page, then move the whole lot onto the next page, default=1
642 // note that the user will have had to make a font selection already or this will not
643 // produce a valid pdf file.
645 if (!is_array($data)){
649 if (!is_array($cols)){
650 // take the columns from the first row of the data set
652 list($k,$v)=each($data);
657 foreach($v as $k1=>$v1){
662 if (!is_array($options)){
667 'shaded'=>1,'showLines'=>1,'shadeCol'=>array(0.8,0.8,0.8),'shadeCol2'=>array(0.7,0.7,0.7),'fontSize'=>10,'titleFontSize'=>12
668 ,'titleGap'=>5,'lineCol'=>array(0,0,0),'gap'=>5,'xPos'=>'centre','xOrientation'=>'centre'
669 ,'showHeadings'=>1,'textCol'=>array(0,0,0),'width'=>0,'maxWidth'=>0,'cols'=>array(),'minRowSpace'=>-100,'rowGap'=>2,'colGap'=>5
670 ,'innerLineThickness'=>1,'outerLineThickness'=>1,'splitRows'=>0,'protectRows'=>1
673 foreach($defaults as $key=>$value){
674 if (is_array($value)){
675 if (!isset($options[$key]) ||
!is_array($options[$key])){
676 $options[$key]=$value;
679 if (!isset($options[$key])){
680 $options[$key]=$value;
684 $options['gap']=2*$options['colGap'];
686 $middle = ($this->ez
['pageWidth']-$this->ez
['rightMargin'])/2+
($this->ez
['leftMargin'])/2;
687 // figure out the maximum widths of the text within each column
689 foreach($cols as $colName=>$colHeading){
690 $maxWidth[$colName]=0;
692 // find the maximum cell widths based on the data
693 foreach($data as $row){
694 foreach($cols as $colName=>$colHeading){
695 $w = $this->ezPrvtGetTextWidth($options['fontSize'],(string)$row[$colName])*1.01;
696 if ($w > $maxWidth[$colName]){
697 $maxWidth[$colName]=$w;
701 // and the maximum widths to fit in the headings
702 foreach($cols as $colName=>$colTitle){
703 $w = $this->ezPrvtGetTextWidth($options['fontSize'],(string)$colTitle)*1.01;
704 if ($w > $maxWidth[$colName]){
705 $maxWidth[$colName]=$w;
709 // calculate the start positions of each of the columns
715 foreach($maxWidth as $colName => $w){
717 // if the column width has been specified then set that here, also total the
718 // width avaliable for adjustment
719 if (isset($options['cols'][$colName]) && isset($options['cols'][$colName]['width']) && $options['cols'][$colName]['width']>0){
720 $t=$t+
$options['cols'][$colName]['width'];
721 $maxWidth[$colName] = $options['cols'][$colName]['width']-$options['gap'];
722 $setWidth +
= $options['cols'][$colName]['width'];
724 $t=$t+
$w+
$options['gap'];
725 $adjustmentWidth +
= $w;
726 $setWidth +
= $options['gap'];
731 // if maxWidth is specified, and the table is too wide, and the width has not been set,
732 // then set the width.
733 if ($options['width']==0 && $options['maxWidth'] && ($t-$x)>$options['maxWidth']){
734 // then need to make this one smaller
735 $options['width']=$options['maxWidth'];
738 if ($options['width'] && $adjustmentWidth>0 && $setWidth<$options['width']){
739 // first find the current widths of the columns involved in this mystery
745 foreach($pos as $colName=>$p){
746 if (!isset($options['cols'][$last]) ||
!isset($options['cols'][$last]['width']) ||
$options['cols'][$last]['width']<=0){
748 $cols0[$last]=$p-$xq -$options['gap'];
749 $presentWidth +
= ($p-$xq - $options['gap']);
752 $cols1[$last]=$p-$xq;
757 // $cols0 contains the widths of all the columns which are not set
758 $neededWidth = $options['width']-$setWidth;
759 // if needed width is negative then add it equally to each column, else get more tricky
760 if ($presentWidth<$neededWidth){
761 foreach($cols0 as $colName=>$w){
762 $cols0[$colName]+
= ($neededWidth-$presentWidth)/count($cols0);
767 while ($presentWidth>$neededWidth && $cnt<100){
768 $cnt++
; // insurance policy
769 // find the widest columns, and the next to widest width
773 foreach($cols0 as $colName=>$w){
775 $aWidest=array($colName);
778 } else if ($w==$widest){
782 // then figure out what the width of the widest columns would have to be to take up all the slack
783 $newWidestWidth = $widest - ($presentWidth-$neededWidth)/count($aWidest);
784 if ($newWidestWidth > $nWidest){
785 // then there is space to set them to this
786 foreach($aWidest as $colName){
787 $cols0[$colName] = $newWidestWidth;
789 $presentWidth=$neededWidth;
791 // there is not space, reduce the size of the widest ones down to the next size down, and we
792 // will go round again
793 foreach($aWidest as $colName){
794 $cols0[$colName] = $nWidest;
796 $presentWidth=$presentWidth-($widest-$nWidest)*count($aWidest);
800 // $cols0 now contains the new widths of the constrained columns.
801 // now need to update the $pos and $maxWidth arrays
803 foreach($pos as $colName=>$p){
805 if (!isset($options['cols'][$colName]) ||
!isset($options['cols'][$colName]['width']) ||
$options['cols'][$colName]['width']<=0){
806 if (isset($cols0[$colName])){
807 $xq +
= $cols0[$colName] +
$options['gap'];
808 $maxWidth[$colName]=$cols0[$colName];
811 if (isset($cols1[$colName])){
812 $xq +
= $cols1[$colName];
817 $t=$x+
$options['width'];
821 // now adjust the table to the correct location across the page
822 switch ($options['xPos']){
824 $xref = $this->ez
['leftMargin'];
827 $xref = $this->ez
['pageWidth'] - $this->ez
['rightMargin'];
834 $xref = $options['xPos'];
837 switch ($options['xOrientation']){
851 foreach($pos as $k=>$v){
857 $baseLeftMargin = $this->ez
['leftMargin'];
862 // ok, just about ready to make me a table
863 $this->setColor($options['textCol'][0],$options['textCol'][1],$options['textCol'][2]);
864 $this->setStrokeColor($options['shadeCol'][0],$options['shadeCol'][1],$options['shadeCol'][2]);
866 $middle = ($x1+
$x0)/2;
868 // start a transaction which will be used to regress the table, if there are not enough rows protected
869 if ($options['protectRows']>0){
870 $this->transaction('start');
877 $dm = $this->ez
['leftMargin']-$baseLeftMargin;
878 foreach($basePos as $k=>$v){
883 $middle = ($x1+
$x0)/2;
886 // if the title is set, then do that
888 $w = $this->getTextWidth($options['titleFontSize'],$title);
889 $this->y
-= $this->getFontHeight($options['titleFontSize']);
890 if ($this->y
< $this->ez
['bottomMargin']){
892 // margins may have changed on the newpage
893 $dm = $this->ez
['leftMargin']-$baseLeftMargin;
894 foreach($basePos as $k=>$v){
899 $middle = ($x1+
$x0)/2;
900 $this->y
-= $this->getFontHeight($options['titleFontSize']);
902 $this->addText($middle-$w/2,$this->y
,$options['titleFontSize'],$title);
903 $this->y
-= $options['titleGap'];
906 // margins may have changed on the newpage
907 $dm = $this->ez
['leftMargin']-$baseLeftMargin;
908 foreach($basePos as $k=>$v){
914 $y=$this->y
; // to simplify the code a bit
917 $height = $this->getFontHeight($options['fontSize']);
918 $decender = $this->getFontDecender($options['fontSize']);
924 if ($options['showHeadings']){
925 // this function will move the start of the table to a new page if it does not fit on this one
926 $headingHeight = $this->ezPrvtTableColumnHeadings($cols,$pos,$maxWidth,$height,$decender,$options['rowGap'],$options['fontSize'],$y,$options);
927 $y0 = $y+
$headingHeight;
931 $dm = $this->ez
['leftMargin']-$baseLeftMargin;
932 foreach($basePos as $k=>$v){
944 // open an object here so that the text can be put in over the shading
945 if ($options['shaded']){
947 $textObjectId = $this->openObject();
948 $this->closeObject();
949 $this->addObject($textObjectId);
950 $this->reopenObject($textObjectId);
955 foreach($data as $row){
957 // the transaction support will be used to prevent rows being split
958 if ($options['splitRows']==0){
959 $pageStart = $this->ezPageCount
;
960 if (isset($this->ez
['columns']) && $this->ez
['columns']['on']==1){
961 $columnStart = $this->ez
['columns']['colNum'];
963 $this->transaction('start');
971 while(!$abortTable && $ok == 0){
975 while(!$abortTable && ($newPage ||
$newRow)){
978 if ($newPage ||
$y<$this->ez
['bottomMargin'] ||
(isset($options['minRowSpace']) && $y<($this->ez
['bottomMargin']+
$options['minRowSpace'])) ){
979 // check that enough rows are with the heading
980 if ($options['protectRows']>0 && $movedOnce==0 && $cnt<=$options['protectRows']){
981 // then we need to move the whole table onto the next page
986 $y2=$y-$mx+
2*$height+
$decender-$newRow*$height;
987 if ($options['showLines']){
988 if (!$options['showHeadings']){
991 $this->ezPrvtTableDrawLines($pos,$options['gap'],$x0,$x1,$y0,$y1,$y2,$options['lineCol'],$options['innerLineThickness'],$options['outerLineThickness'],$options['showLines']);
993 if ($options['shaded']){
994 $this->closeObject();
995 $this->restoreState();
998 // and the margins may have changed, this is due to the possibility of the columns being turned on
999 // as the columns are managed by manipulating the margins
1001 $dm = $this->ez
['leftMargin']-$baseLeftMargin;
1002 foreach($basePos as $k=>$v){
1010 if ($options['shaded']){
1012 $textObjectId = $this->openObject();
1013 $this->closeObject();
1014 $this->addObject($textObjectId);
1015 $this->reopenObject($textObjectId);
1017 $this->setColor($options['textCol'][0],$options['textCol'][1],$options['textCol'][2],1);
1018 $y = $this->ez
['pageHeight']-$this->ez
['topMargin'];
1021 if ($options['showHeadings']){
1022 $this->ezPrvtTableColumnHeadings($cols,$pos,$maxWidth,$height,$decender,$options['rowGap'],$options['fontSize'],$y,$options);
1031 // write the actual data
1032 // if these cells need to be split over a page, then $newPage will be set, and the remaining
1033 // text will be placed in $leftOvers
1037 foreach($cols as $colName=>$colTitle){
1038 $this->ezSetY($y+
$height);
1040 if (isset($row[$colName])){
1041 if (isset($options['cols'][$colName]) && isset($options['cols'][$colName]['link']) && strlen($options['cols'][$colName]['link'])){
1043 $lines = explode("\n",$row[$colName]);
1044 if (isset($row[$options['cols'][$colName]['link']]) && strlen($row[$options['cols'][$colName]['link']])){
1045 foreach($lines as $k=>$v){
1046 $lines[$k]='<c:alink:'.$row[$options['cols'][$colName]['link']].'>'.$v.'</c:alink>';
1050 $lines = explode("\n",$row[$colName]);
1055 $this->y
-= $options['rowGap'];
1056 foreach ($lines as $line){
1057 $line = $this->ezProcessText($line);
1060 while (strlen($line) ||
$start){
1063 $this->y
=$this->y
-$height;
1065 if ($this->y
< $this->ez
['bottomMargin']){
1066 // $this->ezNewPage();
1067 $newPage=1; // whether a new page is required for any of the columns
1068 $colNewPage=1; // whether a new page is required for this column
1071 if (isset($leftOvers[$colName])){
1072 $leftOvers[$colName].="\n".$line;
1074 $leftOvers[$colName] = $line;
1078 if (isset($options['cols'][$colName]) && isset($options['cols'][$colName]['justification']) ){
1079 $just = $options['cols'][$colName]['justification'];
1084 $line=$this->addTextWrap($pos[$colName],$this->y
,$maxWidth[$colName],$options['fontSize'],$line,$just);
1089 $dy=$y+
$height-$this->y+
$options['rowGap'];
1090 if ($dy-$height*$newPage>$mx){
1091 $mx=$dy-$height*$newPage;
1094 // set $row to $leftOvers so that they will be processed onto the new page
1096 // now add the shading underneath
1097 if ($options['shaded'] && $cnt%2
==0){
1098 $this->closeObject();
1099 $this->setColor($options['shadeCol'][0],$options['shadeCol'][1],$options['shadeCol'][2],1);
1100 $this->filledRectangle($x0-$options['gap']/2,$y+
$decender+
$height-$mx,$x1-$x0,$mx);
1101 $this->reopenObject($textObjectId);
1104 if ($options['shaded']==2 && $cnt%2
==1){
1105 $this->closeObject();
1106 $this->setColor($options['shadeCol2'][0],$options['shadeCol2'][1],$options['shadeCol2'][2],1);
1107 $this->filledRectangle($x0-$options['gap']/2,$y+
$decender+
$height-$mx,$x1-$x0,$mx);
1108 $this->reopenObject($textObjectId);
1111 if ($options['showLines']>1){
1112 // then draw a line on the top of each block
1113 // $this->closeObject();
1115 $this->setStrokeColor($options['lineCol'][0],$options['lineCol'][1],$options['lineCol'][2],1);
1116 // $this->line($x0-$options['gap']/2,$y+$decender+$height-$mx,$x1-$x0,$mx);
1118 $this->setLineStyle($options['outerLineThickness']);
1121 $this->setLineStyle($options['innerLineThickness']);
1123 $this->line($x0-$options['gap']/2,$y+
$decender+
$height,$x1-$options['gap']/2,$y+
$decender+
$height);
1124 $this->restoreState();
1125 // $this->reopenObject($textObjectId);
1130 // checking row split over pages
1131 if ($options['splitRows']==0){
1132 if ( ( ($this->ezPageCount
!= $pageStart) ||
(isset($this->ez
['columns']) && $this->ez
['columns']['on']==1 && $columnStart != $this->ez
['columns']['colNum'] )) && $secondTurn==0){
1133 // then we need to go back and try that again !
1136 $this->transaction('rewind');
1143 $dm = $this->ez
['leftMargin']-$baseLeftMargin;
1144 foreach($basePos as $k=>$v){
1151 $this->transaction('commit');
1155 $ok=1; // don't go round the loop if splitting rows is allowed
1158 } // end of while to check for row splitting
1161 $this->transaction('abort');
1163 // only the outer transaction should be operational
1164 $this->transaction('rewind');
1169 } // end of foreach ($data as $row)
1171 } // end of while ($abortTable)
1173 // table has been put on the page, the rows guarded as required, commit.
1174 $this->transaction('commit');
1177 if ($options['showLines']){
1178 if (!$options['showHeadings']){
1181 $this->ezPrvtTableDrawLines($pos,$options['gap'],$x0,$x1,$y0,$y1,$y2,$options['lineCol'],$options['innerLineThickness'],$options['outerLineThickness'],$options['showLines']);
1184 // close the object for drawing the text on top
1185 if ($options['shaded']){
1186 $this->closeObject();
1187 $this->restoreState();
1194 // ------------------------------------------------------------------------------
1195 function ezProcessText($text){
1196 // this function will intially be used to implement underlining support, but could be used for a range of other
1198 $search = array('<u>','<U>','</u>','</U>');
1199 $replace = array('<c:uline>','<c:uline>','</c:uline>','</c:uline>');
1200 return str_replace($search,$replace,$text);
1203 // ------------------------------------------------------------------------------
1205 function ezText($text,$size=0,$options=array(),$test=0){
1206 // this will add a string of text to the document, starting at the current drawing
1208 // it will wrap to keep within the margins, including optional offsets from the left
1209 // and the right, if $size is not specified, then it will be the last one used, or
1210 // the default value (12 I think).
1211 // the text will go to the start of the next line when a return code "\n" is found.
1212 // possible options are:
1213 // 'left'=> number, gap to leave from the left margin
1214 // 'right'=> number, gap to leave from the right margin
1215 // 'aleft'=> number, absolute left position (overrides 'left')
1216 // 'aright'=> number, absolute right position (overrides 'right')
1217 // 'justification' => 'left','right','center','centre','full'
1219 // only set one of the next two items (leading overrides spacing)
1220 // 'leading' => number, defines the total height taken by the line, independent of the font height.
1221 // 'spacing' => a real number, though usually set to one of 1, 1.5, 2 (line spacing as used in word processing)
1223 // if $test is set then this should just check if the text is going to flow onto a new page or not, returning true or false
1225 // apply the filtering which will make the underlining function.
1226 $text = $this->ezProcessText($text);
1229 $store_y = $this->y
;
1231 if (is_array($options) && isset($options['aleft'])){
1232 $left=$options['aleft'];
1234 $left = $this->ez
['leftMargin'] +
((is_array($options) && isset($options['left']))?
$options['left']:0);
1236 if (is_array($options) && isset($options['aright'])){
1237 $right=$options['aright'];
1239 $right = $this->ez
['pageWidth'] - $this->ez
['rightMargin'] - ((is_array($options) && isset($options['right']))?
$options['right']:0);
1242 $size = $this->ez
['fontSize'];
1244 $this->ez
['fontSize']=$size;
1247 if (is_array($options) && isset($options['justification'])){
1248 $just = $options['justification'];
1253 // modifications to give leading and spacing based on those given by Craig Heydenburg 1/1/02
1254 if (is_array($options) && isset($options['leading'])) { ## use leading instead of spacing
1255 $height = $options['leading'];
1256 } else if (is_array($options) && isset($options['spacing'])) {
1257 $height = $this->getFontHeight($size) * $options['spacing'];
1259 $height = $this->getFontHeight($size);
1263 $lines = explode("\n",$text);
1264 foreach ($lines as $line){
1266 while (strlen($line) ||
$start){
1268 $this->y
=$this->y
-$height;
1269 if ($this->y
< $this->ez
['bottomMargin']){
1274 // and then re-calc the left and right, in case they have changed due to columns
1277 if (is_array($options) && isset($options['aleft'])){
1278 $left=$options['aleft'];
1280 $left = $this->ez
['leftMargin'] +
((is_array($options) && isset($options['left']))?
$options['left']:0);
1282 if (is_array($options) && isset($options['aright'])){
1283 $right=$options['aright'];
1285 $right = $this->ez
['pageWidth'] - $this->ez
['rightMargin'] - ((is_array($options) && isset($options['right']))?
$options['right']:0);
1287 $line=$this->addTextWrap($left,$this->y
,$right-$left,$size,$line,$just,0,$test);
1299 // ------------------------------------------------------------------------------
1301 function ezImage($image,$pad = 5,$width = 0,$resize = 'full',$just = 'center',$border = ''){
1302 //beta ezimage function
1303 if (stristr($image,'://'))//copy to temp file
1305 $fp = @fopen
($image,"rb");
1308 $cont.= fread($fp,1024);
1311 $image = tempnam ("/tmp", "php-pdf");
1312 $fp2 = @fopen
($image,"w");
1318 if (!(file_exists($image))) return false; //return immediately if image file does not exist
1319 $imageInfo = getimagesize($image);
1320 switch ($imageInfo[2]){
1328 return false; //return if file is not jpg or png
1330 if ($width == 0) $width = $imageInfo[0]; //set width
1331 $ratio = $imageInfo[0]/$imageInfo[1];
1333 //get maximum width of image
1334 if (isset($this->ez
['columns']) && $this->ez
['columns']['on'] == 1)
1336 $bigwidth = $this->ez
['columns']['width'] - ($pad * 2);
1340 $bigwidth = $this->ez
['pageWidth'] - ($pad * 2);
1342 //fix width if larger than maximum or if $resize=full
1343 if ($resize == 'full' ||
$resize == 'width' ||
$width > $bigwidth)
1349 $height = ($width/$ratio); //set height
1351 //fix size if runs off page
1352 if ($height > ($this->y
- $this->ez
['bottomMargin'] - ($pad * 2)))
1354 if ($resize != 'full')
1360 $height = ($this->y
- $this->ez
['bottomMargin'] - ($pad * 2)); //shrink height
1361 $width = ($height*$ratio); //fix width
1365 //fix x-offset if image smaller than bigwidth
1366 if ($width < $bigwidth)
1368 //center if justification=center
1369 if ($just == 'center')
1371 $offset = ($bigwidth - $width) / 2;
1373 //move to right if justification=right
1374 if ($just == 'right')
1376 $offset = ($bigwidth - $width);
1378 //leave at left if justification=left
1379 if ($just == 'left')
1386 //call appropriate function
1387 if ($type == "jpeg"){
1388 $this->addJpegFromFile($image,$this->ez
['leftMargin'] +
$pad +
$offset, $this->y +
$this->getFontHeight($this->ez
['fontSize']) - $pad - $height,$width);
1391 if ($type == "png"){
1392 $this->addPngFromFile($image,$this->ez
['leftMargin'] +
$pad +
$offset, $this->y +
$this->getFontHeight($this->ez
['fontSize']) - $pad - $height,$width);
1397 if (!(isset($border['color'])))
1399 $border['color']['red'] = .5;
1400 $border['color']['blue'] = .5;
1401 $border['color']['green'] = .5;
1403 if (!(isset($border['width']))) $border['width'] = 1;
1404 if (!(isset($border['cap']))) $border['cap'] = 'round';
1405 if (!(isset($border['join']))) $border['join'] = 'round';
1408 $this->setStrokeColor($border['color']['red'],$border['color']['green'],$border['color']['blue']);
1409 $this->setLineStyle($border['width'],$border['cap'],$border['join']);
1410 $this->rectangle($this->ez
['leftMargin'] +
$pad +
$offset, $this->y +
$this->getFontHeight($this->ez
['fontSize']) - $pad - $height,$width,$height);
1413 // move y below image
1414 $this->y
= $this->y
- $pad - $height;
1415 //remove tempfile for remote images
1416 if ($temp == true) unlink($image);
1419 // ------------------------------------------------------------------------------
1421 // note that templating code is still considered developmental - have not really figured
1422 // out a good way of doing this yet.
1423 function loadTemplate($templateFile){
1424 // this function will load the requested template ($file includes full or relative pathname)
1425 // the code for the template will be modified to make it name safe, and then stored in
1426 // an array for later use
1427 // The id of the template will be returned for the user to operate on it later
1428 if (!file_exists($templateFile)){
1432 $code = implode('',file($templateFile));
1433 if (!strlen($code)){
1437 $code = trim($code);
1438 if (substr($code,0,5)=='<?php'){
1439 $code = substr($code,5);
1441 if (substr($code,-2)=='?>'){
1442 $code = substr($code,0,strlen($code)-2);
1444 if (isset($this->ez
['numTemplates'])){
1445 $newNum = $this->ez
['numTemplates'];
1446 $this->ez
['numTemplates']++
;
1449 $this->ez
['numTemplates']=1;
1450 $this->ez
['templates']=array();
1453 $this->ez
['templates'][$newNum]['code']=$code;
1458 // ------------------------------------------------------------------------------
1460 function execTemplate($id,$data=array(),$options=array()){
1461 // execute the given template on the current document.
1462 if (!isset($this->ez
['templates'][$id])){
1465 eval($this->ez
['templates'][$id]['code']);
1468 // ------------------------------------------------------------------------------
1469 function ilink($info){
1470 $this->alink($info,1);
1473 function alink($info,$internal=0){
1474 // a callback function to support the formation of clickable links within the document
1475 $lineFactor=0.05; // the thickness of the line as a proportion of the height. also the drop of the line.
1476 switch($info['status']){
1479 // the beginning of the link
1480 // this should contain the URl for the link as the 'p' entry, and will also contain the value of 'nCallback'
1481 if (!isset($this->ez
['links'])){
1482 $this->ez
['links']=array();
1484 $i = $info['nCallback'];
1485 $this->ez
['links'][$i] = array('x'=>$info['x'],'y'=>$info['y'],'angle'=>$info['angle'],'decender'=>$info['decender'],'height'=>$info['height'],'url'=>$info['p']);
1488 $this->setColor(0,0,1);
1489 $this->setStrokeColor(0,0,1);
1490 $thick = $info['height']*$lineFactor;
1491 $this->setLineStyle($thick);
1496 // the end of the link
1497 // assume that it is the most recent opening which has closed
1498 $i = $info['nCallback'];
1499 $start = $this->ez
['links'][$i];
1502 $this->addInternalLink($start['url'],$start['x'],$start['y']+
$start['decender'],$info['x'],$start['y']+
$start['decender']+
$start['height']);
1504 $a = deg2rad((float)$start['angle']-90.0);
1505 $drop = $start['height']*$lineFactor*1.5;
1506 $dropx = cos($a)*$drop;
1507 $dropy = -sin($a)*$drop;
1508 $this->line($start['x']-$dropx,$start['y']-$dropy,$info['x']-$dropx,$info['y']-$dropy);
1509 $this->addLink($start['url'],$start['x'],$start['y']+
$start['decender'],$info['x'],$start['y']+
$start['decender']+
$start['height']);
1510 $this->restoreState();
1516 // ------------------------------------------------------------------------------
1518 function uline($info){
1519 // a callback function to support underlining
1520 $lineFactor=0.05; // the thickness of the line as a proportion of the height. also the drop of the line.
1521 switch($info['status']){
1525 // the beginning of the underline zone
1526 if (!isset($this->ez
['links'])){
1527 $this->ez
['links']=array();
1529 $i = $info['nCallback'];
1530 $this->ez
['links'][$i] = array('x'=>$info['x'],'y'=>$info['y'],'angle'=>$info['angle'],'decender'=>$info['decender'],'height'=>$info['height']);
1532 $thick = $info['height']*$lineFactor;
1533 $this->setLineStyle($thick);
1537 // the end of the link
1538 // assume that it is the most recent opening which has closed
1539 $i = $info['nCallback'];
1540 $start = $this->ez
['links'][$i];
1542 $a = deg2rad((float)$start['angle']-90.0);
1543 $drop = $start['height']*$lineFactor*1.5;
1544 $dropx = cos($a)*$drop;
1545 $dropy = -sin($a)*$drop;
1546 $this->line($start['x']-$dropx,$start['y']-$dropy,$info['x']-$dropx,$info['y']-$dropy);
1547 $this->restoreState();
1552 // ------------------------------------------------------------------------------