php-使用TCPDF将空间写入PDF文件

我有一个简单的脚本,可以将一些文本写入PDF,而不是php库TCPDF.
这是脚本:

// create new PDF document 
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

// set document information
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('Label Creator');
$pdf->SetTitle('labels');
$pdf->SetSubject('Labels di prova');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');

// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

//set auto page breaks
$pdf->SetAutoPageBreak(TRUE,0);

//set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);

//set some language-dependent strings
$pdf->setLanguageArray($l);

// set font
$pdf->SetFont('times', '', 15);
//left margin
$pdf->SetMargins(18,15,18,FALSE);
// add a page
$pdf->AddPage();
$label="Hello world, i'm michele";

$pdf->Cell(0, 0 , $label, 0, 1, 'C', 0, '', 0,FALSE,'T','M');

//Close and output PDF document
$pdf->Output('../../labels.pdf', 'F');
echo 'Labels generate!';

问题是脚本可以工作,但是在文件中我会看到文本没有空格!像这样:
的HelloWorld,i’mmichele
有人有解决方案吗?!?

解决方法:

选项1:如果要使用Cell

原型是:

//Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=0, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M')

要处理间距,请使用以下命令:

$pdf->Cell(0, 0, 'TEST CELL STRETCH: spacing', 1, 1, 'C', 0, '', 3);
$pdf->Cell(0, 0, 'TEST CELL STRETCH: force spacing', 1, 1, 'C', 0, '', 4);

您可以尝试以下方法:

$label="Hello world, i'm michele";
$pdf->Cell(0, 0 , $label, 1, 1, 'C', 0, '', 3;

边框已打开,因此您可以查看单元格是否足够大.希望这行得通.
(为便于说明,以下内容:默认情况下,FALSE,’T’,’M’已为值)

选项2:您还可以使用Write()

$pdf->AddPage();

// set some text to print
$label = <<<EOD
About Michele.

Michele is awesome.
EOD;

// print a block of text using Write()
$pdf->Write($h=0, $label, $link='', $fill=0, $align='C', $ln=true, $stretch=0, $firstline=false, $firstblock=false, $maxh=0);

您可以在此处找到很多示例:TCPDF examples

上一篇:php-在tcpdf中使用两种不同类型的字体


下一篇:PHP-Codeigniter将pdf文件作为电子邮件附件发送