예제 #1
0
         $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
         // set auto page breaks
         $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
         // set image scale factor
         $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
         // ---------------------------------------------------------
         // set default font subsetting mode
         $pdf->setFontSubsetting(true);
         // Set font
         // dejavusans is a UTF-8 Unicode font, if you only need to
         // print standard ASCII chars, you can use core fonts like
         // helvetica or times to reduce file size.
         $pdf->SetFont('times', '', 11, '', true);
         // Add a page
         // This method has several options, check the source code documentation for more information.
         $pdf->AddPage();
         // set text shadow effect
         //$pdf->setTextShadow(array('enabled'=>true, 'depth_w'=>0.2, 'depth_h'=>0.2, 'color'=>array(196,196,196), 'opacity'=>1, 'blend_mode'=>'Normal'));
         // Set some content to print
         $html = <<<EOD
t<br>
t{$Today}<br>
t<br>
t{$Title} {$FirstName} {$FamilyName}<br>
t{$Company}<br>
t{$Address}<br>
t{$City} {$ZIP}<br>
t{$Country}<br>
t<br>
tPhone: {$Telephone}<br>
tFax: {$Fax}<br>