phpDocumentor Cpdf
[ class tree: Cpdf ] [ index: Cpdf ] [ all elements ]

Source for file class.ezpdf.php

Documentation is available at class.ezpdf.php

  1. <?php
  2. /**
  3.  * @package Cpdf
  4.  */
  5. /**
  6.  * Cpdf class
  7.  */
  8. include_once('phpDocumentor/Converters/PDF/default/class.pdf.php');
  9.  
  10. /**
  11.  * This class will take the basic interaction facilities of the Cpdf class
  12.  * and make more useful functions so that the user does not have to
  13.  * know all the ins and outs of pdf presentation to produce something pretty.
  14.  *
  15.  * IMPORTANT NOTE
  16.  * there is no warranty, implied or otherwise with this software.
  17.  * 
  18.  * @version 009 (versioning is linked to class.pdf.php)
  19.  *  released under a public domain licence.
  20.  * @author Wayne Munro, R&OS Ltd, {@link http://www.ros.co.nz/pdf}
  21.  * @package Cpdf
  22.  */
  23. class Cezpdf extends Cpdf {
  24. //==============================================================================
  25. // this class will take the basic interaction facilities of the Cpdf class
  26. // and make more useful functions so that the user does not have to 
  27. // know all the ins and outs of pdf presentation to produce something pretty.
  28. //
  29. // IMPORTANT NOTE
  30. // there is no warranty, implied or otherwise with this software.
  31. // 
  32. // version 009 (versioning is linked to class.pdf.php)
  33. //
  34. // released under a public domain licence.
  35. //
  36. // Wayne Munro, R&OS Ltd, http://www.ros.co.nz/pdf
  37. //==============================================================================
  38.  
  39. var $ez=array('fontSize'=>10)// used for storing most of the page configuration parameters
  40. var $y// this is the current vertical positon on the page of the writing point, very important
  41. var $ezPages=array()// keep an array of the ids of the pages, making it easy to go back and add page numbers etc.
  42. var $ezPageCount=0;
  43.  
  44. // ------------------------------------------------------------------------------
  45.  
  46. function Cezpdf($paper='a4',$orientation='portrait'){
  47.     // Assuming that people don't want to specify the paper size using the absolute coordinates
  48.     // allow a couple of options:
  49.     // orientation can be 'portrait' or 'landscape'
  50.     // or, to actually set the coordinates, then pass an array in as the first parameter.
  51.     // the defaults are as shown.
  52.     // 
  53.     // -------------------------
  54.     // 2002-07-24 - Nicola Asuni ([email protected]):
  55.     // Added new page formats (45 standard ISO paper formats and 4 american common formats)
  56.     // paper cordinates are calculated in this way: (inches * 72) where 1 inch = 2.54 cm
  57.     // 
  58.     // Now you may also pass a 2 values array containing the page width and height in centimeters
  59.     // -------------------------
  60.  
  61.     if (!is_array($paper)){
  62.         switch (strtoupper($paper)){
  63.             case '4A0'{$size array(0,0,4767.87,6740.79)break;}
  64.             case '2A0'{$size array(0,0,3370.39,4767.87)break;}
  65.             case 'A0'{$size array(0,0,2383.94,3370.39)break;}
  66.             case 'A1'{$size array(0,0,1683.78,2383.94)break;}
  67.             case 'A2'{$size array(0,0,1190.55,1683.78)break;}
  68.             case 'A3'{$size array(0,0,841.89,1190.55)break;}
  69.             case 'A4'default{$size array(0,0,595.28,841.89)break;}
  70.             case 'A5'{$size array(0,0,419.53,595.28)break;}
  71.             case 'A6'{$size array(0,0,297.64,419.53)break;}
  72.             case 'A7'{$size array(0,0,209.76,297.64)break;}
  73.             case 'A8'{$size array(0,0,147.40,209.76)break;}
  74.             case 'A9'{$size array(0,0,104.88,147.40)break;}
  75.             case 'A10'{$size array(0,0,73.70,104.88)break;}
  76.             case 'B0'{$size array(0,0,2834.65,4008.19)break;}
  77.             case 'B1'{$size array(0,0,2004.09,2834.65)break;}
  78.             case 'B2'{$size array(0,0,1417.32,2004.09)break;}
  79.             case 'B3'{$size array(0,0,1000.63,1417.32)break;}
  80.             case 'B4'{$size array(0,0,708.66,1000.63)break;}
  81.             case 'B5'{$size array(0,0,498.90,708.66)break;}
  82.             case 'B6'{$size array(0,0,354.33,498.90)break;}
  83.             case 'B7'{$size array(0,0,249.45,354.33)break;}
  84.             case 'B8'{$size array(0,0,175.75,249.45)break;}
  85.             case 'B9'{$size array(0,0,124.72,175.75)break;}
  86.             case 'B10'{$size array(0,0,87.87,124.72)break;}
  87.             case 'C0'{$size array(0,0,2599.37,3676.54)break;}
  88.             case 'C1'{$size array(0,0,1836.85,2599.37)break;}
  89.             case 'C2'{$size array(0,0,1298.27,1836.85)break;}
  90.             case 'C3'{$size array(0,0,918.43,1298.27)break;}
  91.             case 'C4'{$size array(0,0,649.13,918.43)break;}
  92.             case 'C5'{$size array(0,0,459.21,649.13)break;}
  93.             case 'C6'{$size array(0,0,323.15,459.21)break;}
  94.             case 'C7'{$size array(0,0,229.61,323.15)break;}
  95.             case 'C8'{$size array(0,0,161.57,229.61)break;}
  96.             case 'C9'{$size array(0,0,113.39,161.57)break;}
  97.             case 'C10'{$size array(0,0,79.37,113.39)break;}
  98.             case 'RA0'{$size array(0,0,2437.80,3458.27)break;}
  99.             case 'RA1'{$size array(0,0,1729.13,2437.80)break;}
  100.             case 'RA2'{$size array(0,0,1218.90,1729.13)break;}
  101.             case 'RA3'{$size array(0,0,864.57,1218.90)break;}
  102.             case 'RA4'{$size array(0,0,609.45,864.57)break;}
  103.             case 'SRA0'{$size array(0,0,2551.18,3628.35)break;}
  104.             case 'SRA1'{$size array(0,0,1814.17,2551.18)break;}
  105.             case 'SRA2'{$size array(0,0,1275.59,1814.17)break;}
  106.             case 'SRA3'{$size array(0,0,907.09,1275.59)break;}
  107.             case 'SRA4'{$size array(0,0,637.80,907.09)break;}
  108.             case 'LETTER'{$size array(0,0,612.00,792.00)break;}
  109.             case 'LEGAL'{$size array(0,0,612.00,1008.00)break;}
  110.             case 'EXECUTIVE'{$size array(0,0,521.86,756.00)break;}
  111.             case 'FOLIO'{$size array(0,0,612.00,936.00)break;}
  112.         }
  113.         switch (strtolower($orientation)){
  114.             case 'landscape':
  115.                 $a=$size[3];
  116.                 $size[3]=$size[2];
  117.                 $size[2]=$a;
  118.                 break;
  119.         }
  120.     else {
  121.         if (count($paper)>2{
  122.             // then an array was sent it to set the size
  123.             $size $paper;
  124.         }
  125.         else //size in centimeters has been passed
  126.             $size[00;
  127.             $size[10;
  128.             $size[2$paper[02.54 72;
  129.             $size[3$paper[12.54 72;
  130.         }
  131.     }
  132.     $this->Cpdf($size);
  133.     $this->ez['pageWidth']=$size[2];
  134.     $this->ez['pageHeight']=$size[3];
  135.     
  136.     // also set the margins to some reasonable defaults
  137.     $this->ez['topMargin']=30;
  138.     $this->ez['bottomMargin']=30;
  139.     $this->ez['leftMargin']=30;
  140.     $this->ez['rightMargin']=30;
  141.     
  142.     // set the current writing position to the top of the first page
  143.     $this->y = $this->ez['pageHeight']-$this->ez['topMargin'];
  144.     // and get the ID of the page that was created during the instancing process.
  145.     $this->ezPages[1]=$this->getFirstPageId();
  146.     $this->ezPageCount=1;
  147. }
  148.  
  149. // ------------------------------------------------------------------------------
  150. // 2002-07-24: Nicola Asuni ([email protected])
  151. // Set Margins in centimeters
  152. function ezSetCmMargins($top,$bottom,$left,$right){
  153.     $top $top 2.54 72;
  154.     $bottom $bottom 2.54 72;
  155.     $left $left 2.54 72;
  156.     $right $right 2.54 72;
  157.     $this->ezSetMargins($top,$bottom,$left,$right);
  158. }
  159. // ------------------------------------------------------------------------------
  160.  
  161.  
  162. function ezColumnsStart($options=array()){
  163.   // start from the current y-position, make the set number of columne
  164.   if (isset($this->ez['columns']&& $this->ez['columns']==1){
  165.     // if we are already in a column mode then just return.
  166.     return;
  167.   }
  168.   $def=array('gap'=>10,'num'=>2);
  169.   foreach($def as $k=>$v){
  170.     if (!isset($options[$k])){
  171.       $options[$k]=$v;
  172.     }
  173.   }
  174.   // setup the columns
  175.   $this->ez['columns']=array('on'=>1,'colNum'=>1);
  176.  
  177.   // store the current margins
  178.   $this->ez['columns']['margins']=array(
  179.      $this->ez['leftMargin']
  180.     ,$this->ez['rightMargin']
  181.     ,$this->ez['topMargin']
  182.     ,$this->ez['bottomMargin']
  183.   );
  184.   // and store the settings for the columns
  185.   $this->ez['columns']['options']=$options;
  186.   // then reset the margins to suit the new columns
  187.   // safe enough to assume the first column here, but start from the current y-position
  188.   $this->ez['topMargin']=$this->ez['pageHeight']-$this->y;
  189.   $width=($this->ez['pageWidth']-$this->ez['leftMargin']-$this->ez['rightMargin']-($options['num']-1)*$options['gap'])/$options['num'];
  190.   $this->ez['columns']['width']=$width;
  191.   $this->ez['rightMargin']=$this->ez['pageWidth']-$this->ez['leftMargin']-$width;
  192.   
  193. }
  194. // ------------------------------------------------------------------------------
  195. function ezColumnsStop(){
  196.   if (isset($this->ez['columns']&& $this->ez['columns']['on']==1){
  197.     $this->ez['columns']['on']=0;
  198.     $this->ez['leftMargin']=$this->ez['columns']['margins'][0];
  199.     $this->ez['rightMargin']=$this->ez['columns']['margins'][1];
  200.     $this->ez['topMargin']=$this->ez['columns']['margins'][2];
  201.     $this->ez['bottomMargin']=$this->ez['columns']['margins'][3];
  202.   }
  203. }
  204. // ------------------------------------------------------------------------------
  205. function ezInsertMode($status=1,$pageNum=1,$pos='before'){
  206.   // puts the document into insert mode. new pages are inserted until this is re-called with status=0
  207.   // by default pages wil be inserted at the start of the document
  208.   switch($status){
  209.     case '1':
  210.       if (isset($this->ezPages[$pageNum])){
  211.         $this->ez['insertMode']=1;
  212.         $this->ez['insertOptions']=array('id'=>$this->ezPages[$pageNum],'pos'=>$pos);
  213.       }
  214.       break;
  215.     case '0':
  216.       $this->ez['insertMode']=0;
  217.       break;
  218.   }
  219. }
  220. // ------------------------------------------------------------------------------
  221.  
  222. function ezNewPage(){
  223.   $pageRequired=1;
  224.   if (isset($this->ez['columns']&& $this->ez['columns']['on']==1){
  225.     // check if this is just going to a new column
  226.     // increment the column number
  227. //echo 'HERE<br>';
  228.     $this->ez['columns']['colNum']++;
  229. //echo $this->ez['columns']['colNum'].'<br>';
  230.     if ($this->ez['columns']['colNum'<= $this->ez['columns']['options']['num']){
  231.       // then just reset to the top of the next column
  232.       $pageRequired=0;
  233.     else {
  234.       $this->ez['columns']['colNum']=1;
  235.       $this->ez['topMargin']=$this->ez['columns']['margins'][2];
  236.     }
  237.  
  238.     $width $this->ez['columns']['width'];
  239.     $this->ez['leftMargin']=$this->ez['columns']['margins'][0]+($this->ez['columns']['colNum']-1)*($this->ez['columns']['options']['gap']+$width);
  240.     $this->ez['rightMargin']=$this->ez['pageWidth']-$this->ez['leftMargin']-$width;
  241.   }
  242. //echo 'left='.$this->ez['leftMargin'].'   right='.$this->ez['rightMargin'].'<br>';
  243.  
  244.   if ($pageRequired){
  245.     // make a new page, setting the writing point back to the top
  246.     $this->y = $this->ez['pageHeight']-$this->ez['topMargin'];
  247.     // make the new page with a call to the basic class.
  248.     $this->ezPageCount++;
  249.     if (isset($this->ez['insertMode']&& $this->ez['insertMode']==1){
  250.       $id $this->ezPages[$this->ezPageCount$this->newPage(1,$this->ez['insertOptions']['id'],$this->ez['insertOptions']['pos']);
  251.       // then manipulate the insert options so that inserted pages follow each other
  252.       $this->ez['insertOptions']['id']=$id;
  253.       $this->ez['insertOptions']['pos']='after';
  254.     else {
  255.       $this->ezPages[$this->ezPageCount$this->newPage();
  256.     }
  257.   else {
  258.     $this->y = $this->ez['pageHeight']-$this->ez['topMargin'];
  259.   }
  260. }
  261.  
  262. // ------------------------------------------------------------------------------
  263.  
  264. function ezSetMargins($top,$bottom,$left,$right){
  265.   // sets the margins to new values
  266.   $this->ez['topMargin']=$top;
  267.   $this->ez['bottomMargin']=$bottom;
  268.   $this->ez['leftMargin']=$left;
  269.   $this->ez['rightMargin']=$right;
  270.   // check to see if this means that the current writing position is outside the 
  271.   // writable area
  272.   if ($this->y > $this->ez['pageHeight']-$top){
  273.     // then move y down
  274.     $this->y = $this->ez['pageHeight']-$top;
  275.   }
  276.   if $this->y < $bottom){
  277.     // then make a new page
  278.     $this->ezNewPage();
  279.   }
  280. }  
  281.  
  282. // ------------------------------------------------------------------------------
  283.  
  284.   // return the strict numbering (1,2,3,4..) number of the current page
  285.   return $this->ezPageCount;
  286. }
  287.  
  288. // ------------------------------------------------------------------------------
  289.  
  290. function ezStartPageNumbers($x,$y,$size,$pos='left',$pattern='{PAGENUM} of {TOTALPAGENUM}',$num=''){
  291.   // put page numbers on the pages from here.
  292.   // place then on the 'pos' side of the coordinates (x,y).
  293.   // pos can be 'left' or 'right'
  294.   // use the given 'pattern' for display, where (PAGENUM} and {TOTALPAGENUM} are replaced
  295.   // as required.
  296.   // if $num is set, then make the first page this number, the number of total pages will
  297.   // be adjusted to account for this.
  298.   // Adjust this function so that each time you 'start' page numbers then you effectively start a different batch
  299.   // return the number of the batch, so that they can be stopped in a different order if required.
  300.   if (!$pos || !strlen($pos)){
  301.     $pos='left';
  302.   }
  303.   if (!$pattern || !strlen($pattern)){
  304.     $pattern='{PAGENUM} of {TOTALPAGENUM}';
  305.   }
  306.   if (!isset($this->ez['pageNumbering'])){
  307.     $this->ez['pageNumbering']=array();
  308.   }
  309.   $i count($this->ez['pageNumbering']);
  310.   $this->ez['pageNumbering'][$i][$this->ezPageCount]=array('x'=>$x,'y'=>$y,'pos'=>$pos,'pattern'=>$pattern,'num'=>$num,'size'=>$size);
  311.   return $i;
  312. }
  313.  
  314. // ------------------------------------------------------------------------------
  315.  
  316. function ezWhatPageNumber($pageNum,$i=0){
  317.   // given a particular generic page number (ie, document numbered sequentially from beginning),
  318.   // return the page number under a particular page numbering scheme ($i)
  319.   $num=0;
  320.   $start=1;
  321.   $startNum=1;
  322.   if (!isset($this->ez['pageNumbering']))
  323.   {
  324.     $this->addMessage('WARNING: page numbering called for and wasn\'t started with ezStartPageNumbers');
  325.     return 0;
  326.   }
  327.   foreach($this->ez['pageNumbering'][$ias $k=>$v){
  328.     if ($k<=$pageNum){
  329.       if (is_array($v)){
  330.         // start block
  331.         if (strlen($v['num'])){
  332.           // a start was specified
  333.           $start=$v['num'];
  334.           $startNum=$k;
  335.           $num=$pageNum-$startNum+$start;
  336.         }
  337.       else {
  338.         // stop block
  339.         $num=0;
  340.       }
  341.     }
  342.   }
  343.   return $num;
  344. }
  345.  
  346. // ------------------------------------------------------------------------------
  347.  
  348. function ezStopPageNumbers($stopTotal=0,$next=0,$i=0){
  349.   // if stopTotal=1 then the totalling of pages for this number will stop too
  350.   // if $next=1, then do this page, but not the next, else do not do this page either
  351.   // if $i is set, then stop that particular pagenumbering sequence.
  352.   if (!isset($this->ez['pageNumbering'])){
  353.     $this->ez['pageNumbering']=array();
  354.   }
  355.   if ($next && isset($this->ez['pageNumbering'][$i][$this->ezPageCount]&& is_array($this->ez['pageNumbering'][$i][$this->ezPageCount])){
  356.     // then this has only just been started, this will over-write the start, and nothing will appear
  357.     // add a special command to the start block, telling it to stop as well
  358.     if ($stopTotal){
  359.       $this->ez['pageNumbering'][$i][$this->ezPageCount]['stoptn']=1;
  360.     else {
  361.       $this->ez['pageNumbering'][$i][$this->ezPageCount]['stopn']=1;
  362.     }
  363.   else {
  364.     if ($stopTotal){
  365.       $this->ez['pageNumbering'][$i][$this->ezPageCount]='stopt';
  366.     else {
  367.       $this->ez['pageNumbering'][$i][$this->ezPageCount]='stop';
  368.     }
  369.     if ($next){
  370.       $this->ez['pageNumbering'][$i][$this->ezPageCount].='n';
  371.     }
  372.   }
  373. }
  374.  
  375. // ------------------------------------------------------------------------------
  376.  
  377. function ezPRVTpageNumberSearch($lbl,&$tmp){
  378.   foreach($tmp as $i=>$v){
  379.     if (is_array($v)){
  380.       if (isset($v[$lbl])){
  381.         return $i;
  382.       }
  383.     else {
  384.       if ($v==$lbl){
  385.         return $i;
  386.       }
  387.     }
  388.   }
  389.   return 0;
  390. }
  391.  
  392. // ------------------------------------------------------------------------------
  393.  
  394.   // this will go through the pageNumbering array and add the page numbers are required
  395.   if (isset($this->ez['pageNumbering'])){
  396.     $totalPages1 $this->ezPageCount;
  397.     $tmp1=$this->ez['pageNumbering'];
  398.     $status=0;
  399.     foreach($tmp1 as $i=>$tmp){
  400.       // do each of the page numbering systems
  401.       // firstly, find the total pages for this one
  402.       $k $this->ezPRVTpageNumberSearch('stopt',$tmp);
  403.       if ($k && $k>0){
  404.         $totalPages $k-1;
  405.       else {
  406.         $l $this->ezPRVTpageNumberSearch('stoptn',$tmp);
  407.         if ($l && $l>0){
  408.           $totalPages $l;
  409.         else {
  410.           $totalPages $totalPages1;
  411.         }
  412.       }
  413.       foreach ($this->ezPages as $pageNum=>$id){
  414.         if (isset($tmp[$pageNum])){
  415.           if (is_array($tmp[$pageNum])){
  416.             // then this must be starting page numbers
  417.             $status=1;
  418.             $info $tmp[$pageNum];
  419.             $info['dnum']=$info['num']-$pageNum;
  420.             // also check for the special case of the numbering stopping and starting on the same page
  421.             if (isset($info['stopn']|| isset($info['stoptn']) ){
  422.               $status=2;
  423.             }
  424.           else if ($tmp[$pageNum]=='stop' || $tmp[$pageNum]=='stopt'){
  425.             // then we are stopping page numbers
  426.             $status=0;
  427.           else if ($status==&& ($tmp[$pageNum]=='stoptn' || $tmp[$pageNum]=='stopn')){
  428.             // then we are stopping page numbers
  429.             $status=2;
  430.           }
  431.         }
  432.         if ($status){
  433.           // then add the page numbering to this page
  434.           if (strlen($info['num'])){
  435.             $num=$pageNum+$info['dnum'];
  436.           else {
  437.             $num=$pageNum;
  438.           }
  439.           $total $totalPages+$num-$pageNum;
  440.           $pat str_replace('{PAGENUM}',$num,$info['pattern']);
  441.           $pat str_replace('{TOTALPAGENUM}',$total,$pat);
  442.           $this->reopenObject($id);
  443.           switch($info['pos']){
  444.             case 'right':
  445.               $this->addText($info['x'],$info['y'],$info['size'],$pat);
  446.               break;
  447.             default:
  448.               $w=$this->getTextWidth($info['size'],$pat);
  449.               $this->addText($info['x']-$w,$info['y'],$info['size'],$pat);
  450.               break;
  451.           }
  452.           $this->closeObject();
  453.         }
  454.         if ($status==2){
  455.           $status=0;
  456.         }
  457.       }
  458.     }
  459.   }
  460. }
  461.  
  462. // ------------------------------------------------------------------------------
  463.  
  464. function ezPRVTcleanUp(){
  465.   $this->ezPRVTaddPageNumbers();
  466. }
  467.  
  468. // ------------------------------------------------------------------------------
  469.  
  470. function ezStream($options=''){
  471.   $this->ezPRVTcleanUp();
  472.   $this->stream($options);
  473. }
  474.  
  475. // ------------------------------------------------------------------------------
  476.  
  477. function ezOutput($options=0){
  478.   $this->ezPRVTcleanUp();
  479.   return $this->output($options);
  480. }
  481.  
  482. // ------------------------------------------------------------------------------
  483.  
  484. function ezSetY($y){
  485.   // used to change the vertical position of the writing point.
  486.   $this->y = $y;
  487.   if $this->y < $this->ez['bottomMargin']){
  488.     // then make a new page
  489.     $this->ezNewPage();
  490.   }
  491. }
  492.  
  493. // ------------------------------------------------------------------------------
  494.  
  495. function ezSetDy($dy,$mod=''){
  496.   // used to change the vertical position of the writing point.
  497.   // changes up by a positive increment, so enter a negative number to go
  498.   // down the page
  499.   // if $mod is set to 'makeSpace' and a new page is forced, then the pointed will be moved 
  500.   // down on the new page, this will allow space to be reserved for graphics etc.
  501.   $this->y += $dy;
  502.   if $this->y < $this->ez['bottomMargin']){
  503.     // then make a new page
  504.     $this->ezNewPage();
  505.     if ($mod=='makeSpace'){
  506.       $this->y += $dy;
  507.     }
  508.   }
  509. }
  510.  
  511. // ------------------------------------------------------------------------------
  512.  
  513. function ezPrvtTableDrawLines($pos,$gap,$x0,$x1,$y0,$y1,$y2,$col,$inner,$outer,$opt=1){
  514.   $x0=1000;
  515.   $x1=0;
  516.   $this->setStrokeColor($col[0],$col[1],$col[2]);
  517.   $cnt=0;
  518.   $n count($pos);
  519.   foreach($pos as $x){
  520.     $cnt++;
  521.     if ($cnt==|| $cnt==$n){
  522.       $this->setLineStyle($outer);
  523.     else {
  524.       $this->setLineStyle($inner);
  525.     }
  526.     $this->line($x-$gap/2,$y0,$x-$gap/2,$y2);
  527.     if ($x>$x1)$x1=$x};
  528.     if ($x<$x0)$x0=$x};
  529.   }
  530.   $this->setLineStyle($outer);
  531.   $this->line($x0-$gap/2-$outer/2,$y0,$x1-$gap/2+$outer/2,$y0);
  532.   // only do the second line if it is different to the first, AND each row does not have
  533.   // a line on it.
  534.   if ($y0!=$y1 && $opt<2){
  535.     $this->line($x0-$gap/2,$y1,$x1-$gap/2,$y1);
  536.   }
  537.   $this->line($x0-$gap/2-$outer/2,$y2,$x1-$gap/2+$outer/2,$y2);
  538. }
  539.  
  540. // ------------------------------------------------------------------------------
  541.  
  542. function ezPrvtTableColumnHeadings($cols,$pos,$maxWidth,$height,$decender,$gap,$size,&$y,$optionsAll=array()){
  543.   // uses ezText to add the text, and returns the height taken by the largest heading
  544.   // this page will move the headings to a new page if they will not fit completely on this one
  545.   // transaction support will be used to implement this
  546.  
  547.   if (isset($optionsAll['cols'])){
  548.     $options $optionsAll['cols'];
  549.   else {
  550.     $options array();
  551.   }
  552.   
  553.   $mx=0;
  554.   $startPage $this->ezPageCount;
  555.   $secondGo=0;
  556.  
  557.   // $y is the position at which the top of the table should start, so the base
  558.   // of the first text, is $y-$height-$gap-$decender, but ezText starts by dropping $height
  559.   
  560.   // the return from this function is the total cell height, including gaps, and $y is adjusted
  561.   // to be the postion of the bottom line
  562.   
  563.   // begin the transaction
  564.   $this->transaction('start');
  565.   $ok=0;
  566. //  $y-=$gap-$decender;
  567.   $y-=$gap;
  568.   while ($ok==0){
  569.     foreach($cols as $colName=>$colHeading){
  570.       $this->ezSetY($y);
  571.       if (isset($options[$colName]&& isset($options[$colName]['justification'])){
  572.         $justification $options[$colName]['justification'];
  573.       else {
  574.         $justification 'left';
  575.       }
  576.       $this->ezText($colHeading,$size,array('aleft'=> $pos[$colName],'aright'=>($maxWidth[$colName]+$pos[$colName]),'justification'=>$justification));
  577.       $dy $y-$this->y;
  578.       if ($dy>$mx){
  579.         $mx=$dy;
  580.       }
  581.     }
  582.     $y $y $mx $gap $decender;
  583. //    $y -= $mx-$gap+$decender;
  584.     
  585.     // now, if this has moved to a new page, then abort the transaction, move to a new page, and put it there
  586.     // do not check on the second time around, to avoid an infinite loop
  587.     if ($this->ezPageCount != $startPage && $secondGo==0){
  588.       $this->transaction('rewind');
  589.       $this->ezNewPage();
  590.       $y $this->y - $gap-$decender;
  591.       $ok=0;
  592.       $secondGo=1;
  593. //      $y = $store_y;
  594.       $mx=0;
  595.  
  596.     else {
  597.       $this->transaction('commit');
  598.       $ok=1;
  599.     }
  600.   }
  601.  
  602.   return $mx+$gap*2-$decender;
  603. }
  604.  
  605. // ------------------------------------------------------------------------------
  606.  
  607. function ezPrvtGetTextWidth($size,$text){
  608.   // will calculate the maximum width, taking into account that the text may be broken
  609.   // by line breaks.
  610.   $mx=0;
  611.   $lines explode("\n",$text);
  612.   foreach ($lines as $line){
  613.     $w $this->getTextWidth($size,$line);
  614.     if ($w>$mx){
  615.       $mx=$w;
  616.     }
  617.   }
  618.   return $mx;
  619. }
  620.  
  621. // ------------------------------------------------------------------------------
  622.  
  623. function ezTable(&$data,$cols='',$title='',$options=''){
  624.   // add a table of information to the pdf document
  625.   // $data is a two dimensional array
  626.   // $cols (optional) is an associative array, the keys are the names of the columns from $data
  627.   // to be presented (and in that order), the values are the titles to be given to the columns
  628.   // $title (optional) is the title to be put on the top of the table
  629.   //
  630.   // $options is an associative array which can contain:
  631.   // 'showLines'=> 0,1,2, default is 1 (show outside and top lines only), 2=> lines on each row
  632.   // 'showHeadings' => 0 or 1
  633.   // 'shaded'=> 0,1,2,3 default is 1 (1->alternate lines are shaded, 0->no shading, 2-> both shaded, second uses shadeCol2)
  634.   // 'shadeCol' => (r,g,b) array, defining the colour of the shading, default is (0.8,0.8,0.8)
  635.   // 'shadeCol2' => (r,g,b) array, defining the colour of the shading of the other blocks, default is (0.7,0.7,0.7)
  636.   // 'fontSize' => 10
  637.   // 'textCol' => (r,g,b) array, text colour
  638.   // 'titleFontSize' => 12
  639.   // 'rowGap' => 2 , the space added at the top and bottom of each row, between the text and the lines
  640.   // 'colGap' => 5 , the space on the left and right sides of each cell
  641.   // 'lineCol' => (r,g,b) array, defining the colour of the lines, default, black.
  642.   // 'xPos' => 'left','right','center','centre',or coordinate, reference coordinate in the x-direction
  643.   // 'xOrientation' => 'left','right','center','centre', position of the table w.r.t 'xPos' 
  644.   // 'width'=> <number> which will specify the width of the table, if it turns out to not be this
  645.   //    wide, then it will stretch the table to fit, if it is wider then each cell will be made
  646.   //    proportionalty smaller, and the content may have to wrap.
  647.   // 'maxWidth'=> <number> similar to 'width', but will only make table smaller than it wants to be
  648.   // 'options' => array(<colname>=>array('justification'=>'left','width'=>100,'link'=>linkDataName),<colname>=>....)
  649.   //             allow the setting of other paramaters for the individual columns
  650.   // 'minRowSpace'=> the minimum space between the bottom of each row and the bottom margin, in which a new row will be started
  651.   //                  if it is less, then a new page would be started, default=-100
  652.   // 'innerLineThickness'=>1
  653.   // 'outerLineThickness'=>1
  654.   // 'splitRows'=>0, 0 or 1, whether or not to allow the rows to be split across page boundaries
  655.   // 'protectRows'=>number, the number of rows to hold with the heading on page, ie, if there less than this number of
  656.   //                rows on the page, then move the whole lot onto the next page, default=1
  657.   //
  658.   // note that the user will have had to make a font selection already or this will not 
  659.   // produce a valid pdf file.
  660.   
  661.   if (!is_array($data)){
  662.     return;
  663.   }
  664.   
  665.   if (!is_array($cols)){
  666.     // take the columns from the first row of the data set
  667.     reset($data);
  668.     list($k,$v)=each($data);
  669.     if (!is_array($v)){
  670.       return;
  671.     }
  672.     $cols=array();
  673.     foreach($v as $k1=>$v1){
  674.       $cols[$k1]=$k1;
  675.     }
  676.   }
  677.   
  678.   if (!is_array($options)){
  679.     $options=array();
  680.   }
  681.  
  682.   $defaults array(
  683.     'shaded'=>1,'showLines'=>1,'shadeCol'=>array(0.8,0.8,0.8),'shadeCol2'=>array(0.7,0.7,0.7),'fontSize'=>10,'titleFontSize'=>12
  684.     ,'titleGap'=>5,'lineCol'=>array(0,0,0),'gap'=>5,'xPos'=>'centre','xOrientation'=>'centre'
  685.     ,'showHeadings'=>1,'textCol'=>array(0,0,0),'width'=>0,'maxWidth'=>0,'cols'=>array(),'minRowSpace'=>-100,'rowGap'=>2,'colGap'=>5
  686.     ,'innerLineThickness'=>1,'outerLineThickness'=>1,'splitRows'=>0,'protectRows'=>1
  687.     );
  688.  
  689.   foreach($defaults as $key=>$value){
  690.     if (is_array($value)){
  691.       if (!isset($options[$key]|| !is_array($options[$key])){
  692.         $options[$key]=$value;
  693.       }
  694.     else {
  695.       if (!isset($options[$key])){
  696.         $options[$key]=$value;
  697.       }
  698.     }
  699.   }
  700.   $options['gap']=2*$options['colGap'];
  701.   
  702.   $middle ($this->ez['pageWidth']-$this->ez['rightMargin'])/2+($this->ez['leftMargin'])/2;
  703.   // figure out the maximum widths of the text within each column
  704.   $maxWidth=array();
  705.   foreach($cols as $colName=>$colHeading){
  706.     $maxWidth[$colName]=0;
  707.   }
  708.   // find the maximum cell widths based on the data
  709.   foreach($data as $row){
  710.     foreach($cols as $colName=>$colHeading){
  711.       $w $this->ezPrvtGetTextWidth($options['fontSize'],(string)$row[$colName])*1.01;
  712.       if ($w $maxWidth[$colName]){
  713.         $maxWidth[$colName]=$w;
  714.       }
  715.     }
  716.   }
  717.   // and the maximum widths to fit in the headings
  718.   foreach($cols as $colName=>$colTitle){
  719.     $w $this->ezPrvtGetTextWidth($options['fontSize'],(string)$colTitle)*1.01;
  720.     if ($w $maxWidth[$colName]){
  721.       $maxWidth[$colName]=$w;
  722.     }
  723.   }
  724.   
  725.   // calculate the start positions of each of the columns
  726.   $pos=array();
  727.   $x=0;
  728.   $t=$x;
  729.   $adjustmentWidth=0;
  730.   $setWidth=0;
  731.   foreach($maxWidth as $colName => $w){
  732.     $pos[$colName]=$t;
  733.     // if the column width has been specified then set that here, also total the
  734.     // width avaliable for adjustment
  735.     if (isset($options['cols'][$colName]&& isset($options['cols'][$colName]['width']&& $options['cols'][$colName]['width']>0){
  736.       $t=$t+$options['cols'][$colName]['width'];
  737.       $maxWidth[$colName$options['cols'][$colName]['width']-$options['gap'];
  738.       $setWidth += $options['cols'][$colName]['width'];
  739.     else {
  740.       $t=$t+$w+$options['gap'];
  741.       $adjustmentWidth += $w;
  742.       $setWidth += $options['gap'];
  743.     }
  744.   }
  745.   $pos['_end_']=$t;
  746.  
  747.   // if maxWidth is specified, and the table is too wide, and the width has not been set,
  748.   // then set the width.
  749.   if ($options['width']==&& $options['maxWidth'&& ($t-$x)>$options['maxWidth']){
  750.     // then need to make this one smaller
  751.     $options['width']=$options['maxWidth'];
  752.   }
  753.  
  754.   if ($options['width'&& $adjustmentWidth>&& $setWidth<$options['width']){
  755.     // first find the current widths of the columns involved in this mystery
  756.     $cols0 array();
  757.     $cols1 array();
  758.     $xq=0;
  759.     $presentWidth=0;
  760.     $last='';
  761.     foreach($pos as $colName=>$p){
  762.       if (!isset($options['cols'][$last]|| !isset($options['cols'][$last]['width']|| $options['cols'][$last]['width']<=0){
  763.         if (strlen($last)){
  764.           $cols0[$last]=$p-$xq -$options['gap'];
  765.           $presentWidth += ($p-$xq $options['gap']);
  766.         }
  767.       else {
  768.         $cols1[$last]=$p-$xq;
  769.       }
  770.       $last=$colName;
  771.       $xq=$p;
  772.     }
  773.     // $cols0 contains the widths of all the columns which are not set
  774.     $neededWidth $options['width']-$setWidth;
  775.     // if needed width is negative then add it equally to each column, else get more tricky
  776.     if ($presentWidth<$neededWidth){
  777.       foreach($cols0 as $colName=>$w){
  778.         $cols0[$colName]+= ($neededWidth-$presentWidth)/count($cols0);
  779.       }
  780.     else {
  781.     
  782.       $cnt=0;
  783.       while ($presentWidth>$neededWidth && $cnt<100){
  784.         $cnt++// insurance policy
  785.         // find the widest columns, and the next to widest width
  786.         $aWidest array();
  787.         $nWidest=0;
  788.         $widest=0;
  789.         foreach($cols0 as $colName=>$w){
  790.           if ($w>$widest){
  791.             $aWidest=array($colName);
  792.             $nWidest $widest;
  793.             $widest=$w;
  794.           else if ($w==$widest){
  795.             $aWidest[]=$colName;
  796.           }
  797.         }
  798.         // then figure out what the width of the widest columns would have to be to take up all the slack
  799.         $newWidestWidth $widest ($presentWidth-$neededWidth)/count($aWidest);
  800.         if ($newWidestWidth $nWidest){
  801.           // then there is space to set them to this
  802.           foreach($aWidest as $colName){
  803.             $cols0[$colName$newWidestWidth;
  804.           }
  805.           $presentWidth=$neededWidth;
  806.         else {
  807.           // there is not space, reduce the size of the widest ones down to the next size down, and we
  808.           // will go round again
  809.           foreach($aWidest as $colName){
  810.             $cols0[$colName$nWidest;
  811.           }
  812.           $presentWidth=$presentWidth-($widest-$nWidest)*count($aWidest);
  813.         }
  814.       }
  815.     }
  816.     // $cols0 now contains the new widths of the constrained columns.
  817.     // now need to update the $pos and $maxWidth arrays
  818.     $xq=0;
  819.     foreach($pos as $colName=>$p){
  820.       $pos[$colName]=$xq;
  821.       if (!isset($options['cols'][$colName]|| !isset($options['cols'][$colName]['width']|| $options['cols'][$colName]['width']<=0){
  822.         if (isset($cols0[$colName])){
  823.           $xq += $cols0[$colName$options['gap'];
  824.           $maxWidth[$colName]=$cols0[$colName];
  825.         }
  826.       else {
  827.         if (isset($cols1[$colName])){
  828.           $xq += $cols1[$colName];
  829.         }
  830.       }
  831.     }
  832.  
  833.     $t=$x+$options['width'];
  834.     $pos['_end_']=$t;
  835.   }
  836.  
  837.   // now adjust the table to the correct location across the page
  838.   switch ($options['xPos']){
  839.     case 'left':
  840.       $xref $this->ez['leftMargin'];
  841.       break;
  842.     case 'right':
  843.       $xref $this->ez['pageWidth'$this->ez['rightMargin'];
  844.       break;
  845.     case 'centre':
  846.     case 'center':
  847.       $xref $middle;
  848.       break;
  849.     default:
  850.       $xref $options['xPos'];
  851.       break;
  852.   }
  853.   switch ($options['xOrientation']){
  854.     case 'left':
  855.       $dx $xref-$t;
  856.       break;
  857.     case 'right':
  858.       $dx $xref;
  859.       break;
  860.     case 'centre':
  861.     case 'center':
  862.       $dx $xref-$t/2;
  863.       break;
  864.   }
  865.  
  866.  
  867.   foreach($pos as $k=>$v){
  868.     $pos[$k]=$v+$dx;
  869.   }
  870.   $x0=$x+$dx;
  871.   $x1=$t+$dx;
  872.  
  873.   $baseLeftMargin $this->ez['leftMargin'];
  874.   $basePos $pos;
  875.   $baseX0 $x0;
  876.   $baseX1 $x1;
  877.   
  878.   // ok, just about ready to make me a table
  879.   $this->setColor($options['textCol'][0],$options['textCol'][1],$options['textCol'][2]);
  880.   $this->setStrokeColor($options['shadeCol'][0],$options['shadeCol'][1],$options['shadeCol'][2]);
  881.  
  882.   $middle ($x1+$x0)/2;
  883.  
  884.   // start a transaction which will be used to regress the table, if there are not enough rows protected
  885.   if ($options['protectRows']>0){
  886.     $this->transaction('start');
  887.     $movedOnce=0;
  888.   }
  889.   $abortTable 1;
  890.   while ($abortTable){
  891.   $abortTable=0;
  892.  
  893.   $dm $this->ez['leftMargin']-$baseLeftMargin;
  894.   foreach($basePos as $k=>$v){
  895.     $pos[$k]=$v+$dm;
  896.   }
  897.   $x0=$baseX0+$dm;
  898.   $x1=$baseX1+$dm;
  899.   $middle ($x1+$x0)/2;
  900.  
  901.  
  902.   // if the title is set, then do that
  903.   if (strlen($title)){
  904.     $w $this->getTextWidth($options['titleFontSize'],$title);
  905.     $this->y -= $this->getFontHeight($options['titleFontSize']);
  906.     if ($this->y < $this->ez['bottomMargin']){
  907.       $this->ezNewPage();
  908.         // margins may have changed on the newpage
  909.         $dm $this->ez['leftMargin']-$baseLeftMargin;
  910.         foreach($basePos as $k=>$v){
  911.           $pos[$k]=$v+$dm;
  912.         }
  913.         $x0=$baseX0+$dm;
  914.         $x1=$baseX1+$dm;
  915.         $middle ($x1+$x0)/2;
  916.       $this->y -= $this->getFontHeight($options['titleFontSize']);
  917.     }
  918.     $this->addText($middle-$w/2,$this->y,$options['titleFontSize'],$title);
  919.     $this->y -= $options['titleGap'];
  920.   }
  921.  
  922.         // margins may have changed on the newpage
  923.         $dm $this->ez['leftMargin']-$baseLeftMargin;
  924.         foreach($basePos as $k=>$v){
  925.           $pos[$k]=$v+$dm;
  926.         }
  927.         $x0=$baseX0+$dm;
  928.         $x1=$baseX1+$dm;
  929.   
  930.   $y=$this->y// to simplify the code a bit
  931.   
  932.   // make the table
  933.   $height $this->getFontHeight($options['fontSize']);
  934.   $decender $this->getFontDecender($options['fontSize']);
  935.  
  936.   
  937.   
  938.   $y0=$y+$decender;
  939.   $dy=0;
  940.   if ($options['showHeadings']){
  941.     // this function will move the start of the table to a new page if it does not fit on this one
  942.     $headingHeight $this->ezPrvtTableColumnHeadings($cols,$pos,$maxWidth,$height,$decender,$options['rowGap'],$options['fontSize'],$y,$options);
  943.     $y0 $y+$headingHeight;
  944.     $y1 $y;
  945.  
  946.  
  947.     $dm $this->ez['leftMargin']-$baseLeftMargin;
  948.     foreach($basePos as $k=>$v){
  949.       $pos[$k]=$v+$dm;
  950.     }
  951.     $x0=$baseX0+$dm;
  952.     $x1=$baseX1+$dm;
  953.  
  954.   else {
  955.     $y1 $y0;
  956.   }
  957.   $firstLine=1;
  958.  
  959.   
  960.   // open an object here so that the text can be put in over the shading
  961.   if ($options['shaded']){
  962.     $this->saveState();
  963.     $textObjectId $this->openObject();
  964.     $this->closeObject();
  965.     $this->addObject($textObjectId);
  966.     $this->reopenObject($textObjectId);
  967.   }
  968.   
  969.   $cnt=0;
  970.   $newPage=0;
  971.   foreach($data as $row){
  972.     $cnt++;
  973.     // the transaction support will be used to prevent rows being split
  974.     if ($options['splitRows']==0){
  975.       $pageStart $this->ezPageCount;
  976.       if (isset($this->ez['columns']&& $this->ez['columns']['on']==1){
  977.         $columnStart $this->ez['columns']['colNum'];
  978.       }
  979.       $this->transaction('start');
  980.       $row_orig $row;
  981.       $y_orig $y;
  982.       $y0_orig $y0;
  983.       $y1_orig $y1;
  984.     }
  985.     $ok=0;
  986.     $secondTurn=0;
  987.     while(!$abortTable && $ok == 0){
  988.  
  989.     $mx=0;
  990.     $newRow=1;
  991.     while(!$abortTable && ($newPage || $newRow)){
  992.       
  993.       $y-=$height;
  994.       if ($newPage || $y<$this->ez['bottomMargin'|| (isset($options['minRowSpace']&& $y<($this->ez['bottomMargin']+$options['minRowSpace'])) ){
  995.         // check that enough rows are with the heading
  996.         if ($options['protectRows']>&& $movedOnce==&& $cnt<=$options['protectRows']){
  997.           // then we need to move the whole table onto the next page
  998.           $movedOnce 1;
  999.           $abortTable 1;
  1000.         }
  1001.       
  1002.         $y2=$y-$mx+2*$height+$decender-$newRow*$height;
  1003.         if ($options['showLines']){
  1004.           if (!$options['showHeadings']){
  1005.             $y0=$y1;
  1006.           }
  1007.           $this->ezPrvtTableDrawLines($pos,$options['gap'],$x0,$x1,$y0,$y1,$y2,$options['lineCol'],$options['innerLineThickness'],$options['outerLineThickness'],$options['showLines']);
  1008.         }
  1009.         if ($options['shaded']){
  1010.           $this->closeObject();
  1011.           $this->restoreState();
  1012.         }
  1013.         $this->ezNewPage();
  1014.         // and the margins may have changed, this is due to the possibility of the columns being turned on
  1015.         // as the columns are managed by manipulating the margins
  1016.  
  1017.         $dm $this->ez['leftMargin']-$baseLeftMargin;
  1018.         foreach($basePos as $k=>$v){
  1019.           $pos[$k]=$v+$dm;
  1020.         }
  1021. //        $x0=$x0+$dm;
  1022. //        $x1=$x1+$dm;
  1023.         $x0=$baseX0+$dm;
  1024.         $x1=$baseX1+$dm;
  1025.   
  1026.         if ($options['shaded']){
  1027.           $this->saveState();
  1028.           $textObjectId $this->openObject();
  1029.           $this->closeObject();
  1030.           $this->addObject($textObjectId);
  1031.           $this->reopenObject($textObjectId);
  1032.         }
  1033.         $this->setColor($options['textCol'][0],$options['textCol'][1],$options['textCol'][2],1);
  1034.         $y $this->ez['pageHeight']-$this->ez['topMargin'];
  1035.         $y0=$y+$decender;
  1036.         $mx=0;
  1037.         if ($options['showHeadings']){
  1038.           $this->ezPrvtTableColumnHeadings($cols,$pos,$maxWidth,$height,$decender,$options['rowGap'],$options['fontSize'],$y,$options);
  1039.           $y1=$y;
  1040.         else {
  1041.           $y1=$y0;
  1042.         }
  1043.         $firstLine=1;
  1044.         $y -= $height;
  1045.       }
  1046.       $newRow=0;
  1047.       // write the actual data
  1048.       // if these cells need to be split over a page, then $newPage will be set, and the remaining
  1049.       // text will be placed in $leftOvers
  1050.       $newPage=0;
  1051.       $leftOvers=array();
  1052.  
  1053.       foreach($cols as $colName=>$colTitle){
  1054.         $this->ezSetY($y+$height);
  1055.         $colNewPage=0;
  1056.         if (isset($row[$colName])){
  1057.           if (isset($options['cols'][$colName]&& isset($options['cols'][$colName]['link']&& strlen($options['cols'][$colName]['link'])){
  1058.             
  1059.             $lines explode("\n",$row[$colName]);
  1060.             if (isset($row[$options['cols'][$colName]['link']]&& strlen($row[$options['cols'][$colName]['link']])){
  1061.               foreach($lines as $k=>$v){
  1062.                 $lines[$k]='<c:alink:'.$row[$options['cols'][$colName]['link']].'>'.$v.'</c:alink>';
  1063.               }
  1064.             }
  1065.           else {
  1066.             $lines explode("\n",$row[$colName]);
  1067.           }
  1068.         else {
  1069.           $lines array();
  1070.         }
  1071.         $this->y -= $options['rowGap'];
  1072.         foreach ($lines as $line){
  1073.           $line $this->ezProcessText($line);
  1074.           $start=1;
  1075.  
  1076.           while (strlen($line|| $start){
  1077.             $start=0;
  1078.             if (!$colNewPage){
  1079.               $this->y=$this->y-$height;
  1080.             }
  1081.             if ($this->y < $this->ez['bottomMargin']){
  1082.   //            $this->ezNewPage();
  1083.               $newPage=1;  // whether a new page is required for any of the columns
  1084.               $colNewPage=1// whether a new page is required for this column
  1085.             }
  1086.             if ($colNewPage){
  1087.               if (isset($leftOvers[$colName])){
  1088.                 $leftOvers[$colName].="\n".$line;
  1089.               else {
  1090.                 $leftOvers[$colName$line;
  1091.               }
  1092.               $line='';
  1093.             else {
  1094.               if (isset($options['cols'][$colName]&& isset($options['cols'][$colName]['justification']) ){
  1095.                 $just $options['cols'][$colName]['justification'];
  1096.               else {
  1097.                 $just='left';
  1098.               }
  1099.  
  1100.               $line=$this->addTextWrap($pos[$colName],$this->y,$maxWidth[$colName],$options['fontSize'],$line,$just);
  1101.             }
  1102.           }
  1103.         }
  1104.   
  1105.         $dy=$y+$height-$this->y+$options['rowGap'];
  1106.         if ($dy-$height*$newPage>$mx){
  1107.           $mx=$dy-$height*$newPage;
  1108.         }
  1109.       }
  1110.       // set $row to $leftOvers so that they will be processed onto the new page
  1111.       $row $leftOvers;
  1112.       // now add the shading underneath
  1113.       if ($options['shaded'&& $cnt%2==0){
  1114.         $this->closeObject();
  1115.         $this->setColor($options['shadeCol'][0],$options['shadeCol'][1],$options['shadeCol'][2],1);
  1116.         $this->filledRectangle($x0-$options['gap']/2,$y+$decender+$height-$mx,$x1-$x0,$mx);
  1117.         $this->reopenObject($textObjectId);
  1118.       }
  1119.  
  1120.       if ($options['shaded']==&& $cnt%2==1){
  1121.         $this->closeObject();
  1122.         $this->setColor($options['shadeCol2'][0],$options['shadeCol2'][1],$options['shadeCol2'][2],1);
  1123.         $this->filledRectangle($x0-$options['gap']/2,$y+$decender+$height-$mx,$x1-$x0,$mx);
  1124.         $this->reopenObject($textObjectId);
  1125.       }
  1126.  
  1127.       if ($options['showLines']>1){
  1128.         // then draw a line on the top of each block
  1129. //        $this->closeObject();
  1130.         $this->saveState();
  1131.         $this->setStrokeColor($options['lineCol'][0],$options['lineCol'][1],$options['lineCol'][2],1);
  1132. //        $this->line($x0-$options['gap']/2,$y+$decender+$height-$mx,$x1-$x0,$mx);
  1133.         if ($firstLine){
  1134.           $this->setLineStyle($options['outerLineThickness']);
  1135.           $firstLine=0;
  1136.         else {
  1137.           $this->setLineStyle($options['innerLineThickness']);
  1138.         }
  1139.         $this->line($x0-$options['gap']/2,$y+$decender+$height,$x1-$options['gap']/2,$y+$decender+$height);
  1140.         $this->restoreState();
  1141. //        $this->reopenObject($textObjectId);
  1142.       }
  1143.     // end of while 
  1144.     $y=$y-$mx+$height;
  1145.     
  1146.     // checking row split over pages
  1147.     if ($options['splitRows']==0){
  1148.       if ( ( ($this->ezPageCount != $pageStart|| (isset($this->ez['columns']&& $this->ez['columns']['on']==&& $columnStart != $this->ez['columns']['colNum'))  && $secondTurn==0){
  1149.         // then we need to go back and try that again !
  1150.         $newPage=1;
  1151.         $secondTurn=1;
  1152.         $this->transaction('rewind');
  1153.         $row $row_orig;
  1154.         $y $y_orig;
  1155.         $y0 $y0_orig;
  1156.         $y1 $y1_orig;
  1157.         $ok=0;
  1158.  
  1159.         $dm $this->ez['leftMargin']-$baseLeftMargin;
  1160.         foreach($basePos as $k=>$v){
  1161.           $pos[$k]=$v+$dm;
  1162.         }
  1163.         $x0=$baseX0+$dm;
  1164.         $x1=$baseX1+$dm;
  1165.  
  1166.       else {
  1167.         $this->transaction('commit');
  1168.         $ok=1;
  1169.       }
  1170.     else {
  1171.       $ok=1;  // don't go round the loop if splitting rows is allowed
  1172.     }
  1173.     
  1174.     }  // end of while to check for row splitting
  1175.     if ($abortTable){
  1176.       if ($ok==0){
  1177.         $this->transaction('abort');
  1178.       }
  1179.       // only the outer transaction should be operational
  1180.       $this->transaction('rewind');
  1181.       $this->ezNewPage();
  1182.       break;
  1183.     }
  1184.     
  1185.   // end of foreach ($data as $row)
  1186.   
  1187.   // end of while ($abortTable)
  1188.  
  1189.   // table has been put on the page, the rows guarded as required, commit.
  1190.   $this->transaction('commit');
  1191.  
  1192.   $y2=$y+$decender;
  1193.   if ($options['showLines']){
  1194.     if (!$options['showHeadings']){
  1195.       $y0=$y1;
  1196.     }
  1197.     $this->ezPrvtTableDrawLines($pos,$options['gap'],$x0,$x1,$y0,$y1,$y2,$options['lineCol'],$options['innerLineThickness'],$options['outerLineThickness'],$options['showLines']);
  1198.   }
  1199.  
  1200.   // close the object for drawing the text on top
  1201.   if ($options['shaded']){
  1202.     $this->closeObject();
  1203.     $this->restoreState();
  1204.   }
  1205.   
  1206.   $this->y=$y;
  1207.   return $y;
  1208. }
  1209.  
  1210. // ------------------------------------------------------------------------------
  1211. function ezProcessText($text){
  1212.   // this function will intially be used to implement underlining support, but could be used for a range of other
  1213.   // purposes
  1214.   $search array('<u>','<U>','</u>','</U>');
  1215.   $replace array('<c:uline>','<c:uline>','</c:uline>','</c:uline>');
  1216.   return str_replace($search,$replace,$text);
  1217. }
  1218.  
  1219. // ------------------------------------------------------------------------------
  1220.  
  1221. function ezText($text,$size=0,$options=array(),$test=0){
  1222.   // this will add a string of text to the document, starting at the current drawing
  1223.   // position.
  1224.   // it will wrap to keep within the margins, including optional offsets from the left
  1225.   // and the right, if $size is not specified, then it will be the last one used, or
  1226.   // the default value (12 I think).
  1227.   // the text will go to the start of the next line when a return code "\n" is found.
  1228.   // possible options are:
  1229.   // 'left'=> number, gap to leave from the left margin
  1230.   // 'right'=> number, gap to leave from the right margin
  1231.   // 'aleft'=> number, absolute left position (overrides 'left')
  1232.   // 'aright'=> number, absolute right position (overrides 'right')
  1233.   // 'justification' => 'left','right','center','centre','full'
  1234.  
  1235.   // only set one of the next two items (leading overrides spacing)
  1236.   // 'leading' => number, defines the total height taken by the line, independent of the font height.
  1237.   // 'spacing' => a real number, though usually set to one of 1, 1.5, 2 (line spacing as used in word processing)
  1238.   
  1239.   // 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
  1240.   
  1241.   // apply the filtering which will make the underlining function.
  1242.   $text $this->ezProcessText($text);
  1243.   
  1244.   $newPage=false;
  1245.   $store_y $this->y;
  1246.   
  1247.   if (is_array($options&& isset($options['aleft'])){
  1248.     $left=$options['aleft'];
  1249.   else {
  1250.     $left $this->ez['leftMargin'((is_array($options&& isset($options['left']))?$options['left']:0);
  1251.   }
  1252.   if (is_array($options&& isset($options['aright'])){
  1253.     $right=$options['aright'];
  1254.   else {
  1255.     $right $this->ez['pageWidth'$this->ez['rightMargin'((is_array($options&& isset($options['right']))?$options['right']:0);
  1256.   }
  1257.   if ($size<=0){
  1258.     $size $this->ez['fontSize'];
  1259.   else {
  1260.     $this->ez['fontSize']=$size;
  1261.   }
  1262.   
  1263.   if (is_array($options&& isset($options['justification'])){
  1264.     $just $options['justification'];
  1265.   else {
  1266.     $just 'left';
  1267.   }
  1268.   
  1269.   // modifications to give leading and spacing based on those given by Craig Heydenburg 1/1/02
  1270.   if (is_array($options&& isset($options['leading'])) ## use leading instead of spacing
  1271.     $height $options['leading'];
  1272.     else if (is_array($options&& isset($options['spacing'])) {
  1273.     $height $this->getFontHeight($size$options['spacing'];
  1274.     else {
  1275.         $height $this->getFontHeight($size);
  1276.     }
  1277.  
  1278.   
  1279.   $lines explode("\n",$text);
  1280.   foreach ($lines as $line){
  1281.     $start=1;
  1282.     while (strlen($line|| $start){
  1283.       $start=0;
  1284.       $this->y=$this->y-$height;
  1285.       if ($this->y < $this->ez['bottomMargin']){
  1286.         if ($test){
  1287.           $newPage=true;
  1288.         else {
  1289.           $this->ezNewPage();
  1290.           // and then re-calc the left and right, in case they have changed due to columns
  1291.         }
  1292.       }
  1293.       if (is_array($options&& isset($options['aleft'])){
  1294.         $left=$options['aleft'];
  1295.       else {
  1296.         $left $this->ez['leftMargin'((is_array($options&& isset($options['left']))?$options['left']:0);
  1297.       }
  1298.       if (is_array($options&& isset($options['aright'])){
  1299.         $right=$options['aright'];
  1300.       else {
  1301.         $right $this->ez['pageWidth'$this->ez['rightMargin'((is_array($options&& isset($options['right']))?$options['right']:0);
  1302.       }
  1303.       $line=$this->addTextWrap($left,$this->y,$right-$left,$size,$line,$just,0,$test);
  1304.     }
  1305.   }
  1306.  
  1307.   if ($test){
  1308.     $this->y=$store_y;
  1309.     return $newPage;
  1310.   else {
  1311.     return $this->y;
  1312.   }
  1313. }
  1314.  
  1315. // ------------------------------------------------------------------------------
  1316.  
  1317. function ezImage($image,$pad 5,$width 0,$resize 'full',$just 'center',$border ''){
  1318.     //beta ezimage function
  1319.     if (stristr($image,'://'))//copy to temp file
  1320.     {
  1321.         $fp @fopen($image,"rb");
  1322.         while(!feof($fp))
  1323.            {
  1324.                   $cont.= fread($fp,1024);
  1325.            }
  1326.            fclose($fp);
  1327.         $image tempnam ("/tmp""php-pdf");
  1328.         $fp2 @fopen($image,"w");
  1329.            fwrite($fp2,$cont);
  1330.           fclose($fp2);
  1331.         $temp true;
  1332.     }
  1333.  
  1334.     if (!(file_exists($image))) return false//return immediately if image file does not exist
  1335.     $imageInfo getimagesize($image);
  1336.     switch ($imageInfo[2]){
  1337.         case 2:
  1338.             $type "jpeg";
  1339.             break;
  1340.         case 3:
  1341.             $type "png";
  1342.             break;
  1343.         default:
  1344.             return false//return if file is not jpg or png
  1345.     }
  1346.     if ($width == 0$width $imageInfo[0]//set width
  1347.     $ratio $imageInfo[0]/$imageInfo[1];
  1348.  
  1349.     //get maximum width of image
  1350.     if (isset($this->ez['columns']&& $this->ez['columns']['on'== 1)
  1351.     {
  1352.         $bigwidth $this->ez['columns']['width'($pad 2);
  1353.     }
  1354.     else
  1355.     {
  1356.         $bigwidth $this->ez['pageWidth'($pad 2);
  1357.     }
  1358.     //fix width if larger than maximum or if $resize=full
  1359.     if ($resize == 'full' || $resize == 'width' || $width $bigwidth)
  1360.     {
  1361.         $width $bigwidth;
  1362.  
  1363.     }
  1364.  
  1365.     $height ($width/$ratio)//set height
  1366.  
  1367.     //fix size if runs off page
  1368.     if ($height ($this->y - $this->ez['bottomMargin'($pad 2)))
  1369.     {
  1370.         if ($resize != 'full')
  1371.         {
  1372.             $this->ezNewPage();
  1373.         }
  1374.         else
  1375.         {
  1376.             $height ($this->y - $this->ez['bottomMargin'($pad 2))//shrink height
  1377.             $width ($height*$ratio)//fix width
  1378.         }
  1379.     }
  1380.  
  1381.     //fix x-offset if image smaller than bigwidth
  1382.     if ($width $bigwidth)
  1383.     {
  1384.         //center if justification=center
  1385.         if ($just == 'center')
  1386.         {
  1387.             $offset ($bigwidth $width2;
  1388.         }
  1389.         //move to right if justification=right
  1390.         if ($just == 'right')
  1391.         {
  1392.             $offset ($bigwidth $width);
  1393.         }
  1394.         //leave at left if justification=left
  1395.         if ($just == 'left')
  1396.         {
  1397.             $offset 0;
  1398.         }
  1399.     }
  1400.  
  1401.  
  1402.     //call appropriate function
  1403.     if ($type == "jpeg"){
  1404.         $this->addJpegFromFile($image,$this->ez['leftMargin'$pad $offset$this->y + $this->getFontHeight($this->ez['fontSize']$pad $height,$width);
  1405.     }
  1406.  
  1407.     if ($type == "png"){
  1408.         $this->addPngFromFile($image,$this->ez['leftMargin'$pad $offset$this->y + $this->getFontHeight($this->ez['fontSize']$pad $height,$width);
  1409.     }
  1410.     //draw border
  1411.     if ($border != '')
  1412.     {
  1413.     if (!(isset($border['color'])))
  1414.     {
  1415.         $border['color']['red'.5;
  1416.         $border['color']['blue'.5;
  1417.         $border['color']['green'.5;
  1418.     }
  1419.     if (!(isset($border['width']))) $border['width'1;
  1420.     if (!(isset($border['cap']))) $border['cap''round';
  1421.     if (!(isset($border['join']))) $border['join''round';
  1422.     
  1423.  
  1424.     $this->setStrokeColor($border['color']['red'],$border['color']['green'],$border['color']['blue']);
  1425.     $this->setLineStyle($border['width'],$border['cap'],$border['join']);
  1426.     $this->rectangle($this->ez['leftMargin'$pad $offset$this->y + $this->getFontHeight($this->ez['fontSize']$pad $height,$width,$height);
  1427.  
  1428.     }
  1429.     // move y below image
  1430.     $this->y = $this->y - $pad $height;
  1431.     //remove tempfile for remote images
  1432.     if ($temp == trueunlink($image);
  1433.  
  1434. }
  1435. // ------------------------------------------------------------------------------
  1436.  
  1437. // note that templating code is still considered developmental - have not really figured
  1438. // out a good way of doing this yet.
  1439. function loadTemplate($templateFile){
  1440.   // this function will load the requested template ($file includes full or relative pathname)
  1441.   // the code for the template will be modified to make it name safe, and then stored in 
  1442.   // an array for later use
  1443.   // The id of the template will be returned for the user to operate on it later
  1444.   if (!file_exists($templateFile)){
  1445.     return -1;
  1446.   }
  1447.  
  1448.   $code implode('',file($templateFile));
  1449.   if (!strlen($code)){
  1450.     return;
  1451.   }
  1452.  
  1453.   $code trim($code);
  1454.   if (substr($code,0,5)=='<?php'){
  1455.     $code substr($code,5);
  1456.   }
  1457.   if (substr($code,-2)=='?>'){
  1458.     $code substr($code,0,strlen($code)-2);
  1459.   }
  1460.   if (isset($this->ez['numTemplates'])){
  1461.     $newNum $this->ez['numTemplates'];
  1462.     $this->ez['numTemplates']++;
  1463.   else {
  1464.     $newNum=0;
  1465.     $this->ez['numTemplates']=1;
  1466.     $this->ez['templates']=array();
  1467.   }
  1468.  
  1469.   $this->ez['templates'][$newNum]['code']=$code;
  1470.  
  1471.   return $newNum;
  1472. }
  1473.  
  1474. // ------------------------------------------------------------------------------
  1475.  
  1476. function execTemplate($id,$data=array(),$options=array()){
  1477.   // execute the given template on the current document.
  1478.   if (!isset($this->ez['templates'][$id])){
  1479.     return;
  1480.   }
  1481.   eval($this->ez['templates'][$id]['code']);
  1482. }
  1483.  
  1484. // ------------------------------------------------------------------------------
  1485. function ilink($info){
  1486.   $this->alink($info,1);
  1487. }
  1488.  
  1489. function alink($info,$internal=0){
  1490.   // a callback function to support the formation of clickable links within the document
  1491.   $lineFactor=0.05// the thickness of the line as a proportion of the height. also the drop of the line.
  1492.   switch($info['status']){
  1493.     case 'start':
  1494.     case 'sol':
  1495.       // the beginning of the link
  1496.       // this should contain the URl for the link as the 'p' entry, and will also contain the value of 'nCallback'
  1497.       if (!isset($this->ez['links'])){
  1498.         $this->ez['links']=array();
  1499.       }
  1500.       $i $info['nCallback'];
  1501.       $this->ez['links'][$iarray('x'=>$info['x'],'y'=>$info['y'],'angle'=>$info['angle'],'decender'=>$info['decender'],'height'=>$info['height'],'url'=>$info['p']);
  1502.         $this->saveState();
  1503.         $this->setColor(0,0,1);
  1504.         $this->setStrokeColor(0,0,1);
  1505.         $thick $info['height']*$lineFactor;
  1506.         $this->setLineStyle($thick);
  1507.       break;
  1508.     case 'end':
  1509.     case 'eol':
  1510.       // the end of the link
  1511.       // assume that it is the most recent opening which has closed
  1512.       $i $info['nCallback'];
  1513.       $start $this->ez['links'][$i];
  1514.       // add underlining
  1515.         $a deg2rad((float)$start['angle']-90.0);
  1516.         $drop $start['height']*$lineFactor*1.5;
  1517.         $dropx cos($a)*$drop;
  1518.         $dropy = -sin($a)*$drop;
  1519.         $this->line($start['x']-$dropx,$start['y']-$dropy,$info['x']-$dropx,$info['y']-$dropy);
  1520.         if ($internal{
  1521.              $this->addInternalLink($start['url'],$start['x'],$start['y']+$start['decender'],$info['x'],$start['y']+$start['decender']+$start['height']);
  1522.         else {
  1523.              $this->addLink($start['url'],$start['x'],$start['y']+$start['decender'],$info['x'],$start['y']+$start['decender']+$start['height']);
  1524.       }
  1525.       $this->restoreState();
  1526.       break;
  1527.   }
  1528. }
  1529.  
  1530. // ------------------------------------------------------------------------------
  1531.  
  1532. function uline($info){
  1533.   // a callback function to support underlining
  1534.   $lineFactor=0.05// the thickness of the line as a proportion of the height. also the drop of the line.
  1535.   switch($info['status']){
  1536.     case 'start':
  1537.     case 'sol':
  1538.     
  1539.       // the beginning of the underline zone
  1540.       if (!isset($this->ez['links'])){
  1541.         $this->ez['links']=array();
  1542.       }
  1543.       $i $info['nCallback'];
  1544.       $this->ez['links'][$iarray('x'=>$info['x'],'y'=>$info['y'],'angle'=>$info['angle'],'decender'=>$info['decender'],'height'=>$info['height']);
  1545.       $this->saveState();
  1546.       $thick $info['height']*$lineFactor;
  1547.       $this->setLineStyle($thick);
  1548.       break;
  1549.     case 'end':
  1550.     case 'eol':
  1551.       // the end of the link
  1552.       // assume that it is the most recent opening which has closed
  1553.       $i $info['nCallback'];
  1554.       $start $this->ez['links'][$i];
  1555.       // add underlining
  1556.       $a deg2rad((float)$start['angle']-90.0);
  1557.       $drop $start['height']*$lineFactor*1.5;
  1558.       $dropx cos($a)*$drop;
  1559.       $dropy = -sin($a)*$drop;
  1560.       $this->line($start['x']-$dropx,$start['y']-$dropy,$info['x']-$dropx,$info['y']-$dropy);
  1561.       $this->restoreState();
  1562.       break;
  1563.   }
  1564. }
  1565.  
  1566. // ------------------------------------------------------------------------------
  1567.  
  1568. }
  1569. ?>

Documentation generated on Tue, 24 Oct 2006 09:20:54 -0500 by phpDocumentor 1.3.1