我正在使用FPDF在PDF中绘制一些文字。我已将此super cool extension class实现为将基本HTML解析为PDF,但与cell
和multicell
不同,没有用于文本对齐和高度的参数。
如何将文本更改为居中对齐,并将行高更改为$pdf->WriteHTML($text);
??
答案 0 :(得分:1)
使用文本对齐方式查看此已升级的WriteHTML扩展程序:http://fpdf.de/downloads/addons/41/。
示例(来自链接):
<?php
define('FPDF_FONTPATH', 'font/');
require('WriteHTML.php');
$pdf=new PDF_HTML();
$pdf->Open();
$pdf->AddPage();
$pdf->SetFont('Arial');
$pdf->WriteHTML('You can<BR><P ALIGN="center">center a line</P>and add a horizontal rule <BR><HR>');
$pdf->Output();
?>