PDFlib PHP 文本流中的换行符
PDFlib PHP linebreak in textflow
我目前正在使用 PDFlib 处理我的第一个项目,需要创建一个包含多个已定义文本的文本流。但我的问题是,在这些文本之间没有换行符,第二个文本刚好在第一个文本的最后一个字之后开始。这两个词之间甚至没有不间断的space。
这是我的代码中的一个示例:
// First Paragraph
$optlist = "font=" . $fontRegular .
" fontsize=10" .
" fillcolor=black" .
" wordspacing=0";
$tf = $p->add_textflow(0, $firstParaqraph, $optlist);
if ($tf == 0) {
throw new Exception("Error: " . $p->get_errmsg());
}
// Second Paragraph
$optlist = "font=" . $fontRegular .
" fontsize=10" .
" fillcolor=black" .
" wordspacing=0";
$tf = $p->add_textflow($tf, $secondParaqraph, $optlist);
if ($tf == 0) {
throw new Exception("Error: " . $p->get_errmsg());
}
do {
$optlist = "blind=false";
$result = $p->fit_textflow($tf, $x + 10, 0, $textStartHalf+60, $y, "");
} while ($result == "_boxfull");
if ($result == "_stop") {
$infoHeight = $p->info_textflow($tf,'textheight');
$count = $p->info_textflow($tf, 'boxlinecount');
$y = $y - $infoHeight;
$y = $y - ($infoHeight / $count);
}
也许有人可以帮助我,我将不胜感激!
现在不确定我的评论是否正确,但添加:
$tf = $p->add_textflow(0, $firstParaqraph."\n\n", $optlist);
// or
$tf = $p->add_textflow(0, $firstParaqraph."\r\n\r\n", $optlist);
您需要的示例:https://www.pdflib.com/pdflib-cookbook/textflow/distance_between_paragraphs/php/
我目前正在使用 PDFlib 处理我的第一个项目,需要创建一个包含多个已定义文本的文本流。但我的问题是,在这些文本之间没有换行符,第二个文本刚好在第一个文本的最后一个字之后开始。这两个词之间甚至没有不间断的space。
这是我的代码中的一个示例:
// First Paragraph
$optlist = "font=" . $fontRegular .
" fontsize=10" .
" fillcolor=black" .
" wordspacing=0";
$tf = $p->add_textflow(0, $firstParaqraph, $optlist);
if ($tf == 0) {
throw new Exception("Error: " . $p->get_errmsg());
}
// Second Paragraph
$optlist = "font=" . $fontRegular .
" fontsize=10" .
" fillcolor=black" .
" wordspacing=0";
$tf = $p->add_textflow($tf, $secondParaqraph, $optlist);
if ($tf == 0) {
throw new Exception("Error: " . $p->get_errmsg());
}
do {
$optlist = "blind=false";
$result = $p->fit_textflow($tf, $x + 10, 0, $textStartHalf+60, $y, "");
} while ($result == "_boxfull");
if ($result == "_stop") {
$infoHeight = $p->info_textflow($tf,'textheight');
$count = $p->info_textflow($tf, 'boxlinecount');
$y = $y - $infoHeight;
$y = $y - ($infoHeight / $count);
}
也许有人可以帮助我,我将不胜感激!
现在不确定我的评论是否正确,但添加:
$tf = $p->add_textflow(0, $firstParaqraph."\n\n", $optlist);
// or
$tf = $p->add_textflow(0, $firstParaqraph."\r\n\r\n", $optlist);
您需要的示例:https://www.pdflib.com/pdflib-cookbook/textflow/distance_between_paragraphs/php/