Changeset 758 for trunk/app/views/helpers
- Timestamp:
- 09/07/08 13:00:56 (2 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/helpers/fpdf.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/helpers/fpdf.php
r756 r758 20 20 public function __construct($orientation='P',$unit='mm',$format='Letter') 21 21 { 22 $this->pdf = new myFPDF( $orientation, $unit, $format);22 $this->pdf = new myFPDF(null, null, $format); 23 23 $this->pdf->SetFont('Arial','B',10); 24 24 } … … 27 27 { 28 28 $string = utf8_decode($data); // UTF-8 29 $this->pdf->Cell(0,2,$string,0,1,'L'); 29 // Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, boolean fill [, mixed link]]]]]]]) 30 $this->pdf->Cell(0,3,$string,0,1,'L'); 30 31 $this->pdf->Ln(2); 31 32 }
