写有TCPDF空间成PDF文件(Write space with TCPDF into a PDF

2019-07-29 18:38发布

我一直认为写一些文字转换成PDF trought 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有谁有解决方案!?

Answer 1:

选项1:如果你想使用细胞

原型为:

//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:您还可以使用写()

$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例子



Answer 2:

我认为,问题出在“时代”的字体。 我曾与该特定的字体相同的问题。 您可以尝试在TCPDF字体目录中的其他字体。



Answer 3:

我已经解决了,问题出在浏览器的PDF插件可视化的错误!



文章来源: Write space with TCPDF into a PDF file