Zend_Pdf计算当前字体中用于换行的文本字符串的长度

时间:2009-08-16 05:56:43

标签: php zend-framework fonts zend-pdf

有没有人能够轻松计算一段文字在特定字体和大小中消耗的页数? (容易=最小的代码行+计算上便宜)。 Zend_Pdf似乎没有这样做的函数,除了对getGlyphForCharacter(),getUnitsPerEm()和getWidthsForGlyph()的每个字符进行一些非常昂贵的调用。

我正在生成一个多页PDF,每页都有几个表,需要在列中包装文本。它已经花了几秒钟来创建它,我不希望它花太多时间,或者我不得不开始搞乱后台任务或进度条等。

我想出的唯一解决方案是预先计算每种字体大小的宽度(以磅为单位),然后在每个字符串上添加这些字符。还是相当昂贵的。

我错过了什么吗?或者你有什么更简单的?

谢谢!

2 个答案:

答案 0 :(得分:28)

有一种方法可以准确计算宽度,而不是使用Gorilla3D's worst case algorithm

http://devzone.zend.com/article/2525-Zend_Pdf-tutorial#comments-2535

尝试此代码

我在我的应用程序中使用它来计算右对齐文本的偏移量并且它可以正常工作

/**
* Returns the total width in points of the string using the specified font and
* size.
*
* This is not the most efficient way to perform this calculation. I'm
* concentrating optimization efforts on the upcoming layout manager class.
* Similar calculations exist inside the layout manager class, but widths are
* generally calculated only after determining line fragments.
* 
* @link http://devzone.zend.com/article/2525-Zend_Pdf-tutorial#comments-2535 
* @param string $string
* @param Zend_Pdf_Resource_Font $font
* @param float $fontSize Font size in points
* @return float
*/
function widthForStringUsingFontSize($string, $font, $fontSize)
{
     $drawingString = iconv('UTF-8', 'UTF-16BE//IGNORE', $string);
     $characters = array();
     for ($i = 0; $i < strlen($drawingString); $i++) {
         $characters[] = (ord($drawingString[$i++]) << 8 ) | ord($drawingString[$i]);
     }
     $glyphs = $font->glyphNumbersForCharacters($characters);
     $widths = $font->widthsForGlyphs($glyphs);
     $stringWidth = (array_sum($widths) / $font->getUnitsPerEm()) * $fontSize;
     return $stringWidth;
 }

关于性能,我没有在脚本中强烈使用它,但我可以想象它很慢。如果可能的话,我建议将PDF写入磁盘,因此重复视图非常快,并尽可能缓存/硬编码数据。

答案 1 :(得分:0)

多思考一下。获取您使用的最宽字体字形,并将其作为每个字符的宽度。它不准确,但它会阻止文本超过标记。

$pdf = new Zend_Pdf();
$font      = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_COURIER); 
$font_size = $pdf->getFontSize();


$letters = array();
foreach(range(0, 127) as $idx)
{
    array_push($letters, chr($idx));
}
$max_width = max($font->widthsForGlyphs($letters));

// Text wrapping settings
$text_font_size = $max_width; // widest possible glyph
$text_max_width = 238;        // 238px

// Text wrapping calcs
$posible_character_limit = round($text_max_width / $text_font_size);
$text = wordwrap($text, $posible_character_limit, "@newline@");
$text = explode('@newline@', $text);