2016-06-13 15 views
0

私はテキストをfpdfやテキストの中央に配置する方法についてインターネット上で見つけましたが、私はそれを見つけませんでした。それはちょうど私がfpdfにテキストを配置するにはどうすればいいですか

<?php 
     require('../fpdf/fpdf.php'); 
     class Ticket extends FPDF{ 
      private $conexion; 
      public function __construct(){ 
       require_once('../model/conexion.php'); 
       parent::__construct(); 
       $this->conexion = new conexion(); 
       $this->conexion->conectar(); 
      } 
     } 

     $pdf = new FPDF('P','mm',array(114,76)); 
     $pdf->AddPage(); 
     $pdf->SetFont('Arial','',10); 
     $pdf->Cell(0,0,'StoreLTE'); 
     $pdf->Ln(2); 
     $pdf->Output('test.pdf', 'i'); 
    ?> 

答えて

2

を中心に必要なタイトルだ道でCell方法は、あなたは追加のオプション変数が含まれており、センターとしての配置を定義することができ、アライメント http://www.fpdf.org/en/doc/cell.htm

のための任意のVARが含まれています。

$pdf->Cell(0,0,'StoreLTE',0,1,'C'); 
関連する問題