我在互联网上找到了关于如何将文本置于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');
?>
答案 0 :(得分:2)
Cell
方法包括用于对齐的可选var
http://www.fpdf.org/en/doc/cell.htm
您可以包含其他选项变量并将对齐定义为中心。
$pdf->Cell(0,0,'StoreLTE',0,1,'C');
答案 1 :(得分:0)
content.scrollTo(0, content.scrollHeight);
只需给$pdf->MultiCell(0,0, $user_name , $border=0, $align='C', $fill=false);
。这对我有用。