本文整理匯總了PHP中Zend_Pdf_Style::getFontsize方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Pdf_Style::getFontsize方法的具體用法?PHP Zend_Pdf_Style::getFontsize怎麽用?PHP Zend_Pdf_Style::getFontsize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Pdf_Style
的用法示例。
在下文中一共展示了Zend_Pdf_Style::getFontsize方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getWrappedText
/**
* Get wrapped text
*
* @param string $string String
* @param Zend_Pdf_Style $style Style(font, fontsize, line width)
* @param bool $force Use force wrap ( break words )
*
* @return string Wrapped string
*/
private function getWrappedText($string, Zend_Pdf_Style $style, $force = false)
{
$wrappedText = '';
$max_width = $style->getLineWidth();
$lines = explode("\n", $string);
foreach ($lines as $line) {
$words = explode(' ', $line);
// Force wrap like:
// Fo
// rc
// e
//
if ($force) {
$array = array('');
foreach ($words as $word) {
$width = $this->widthForStringUsingFontsize($word, $style->getFont(), $style->getFontsize());
if ($width > $max_width) {
$width = intval($width / $max_width + 1);
$w = str_split($word, 2 * intval(strlen($word) / (2 * $width)));
foreach ($w as $wd) {
if ($this->widthForStringUsingFontsize($array[count($array) - 1] . $wd, $style->getFont(), $style->getFontsize()) < $max_width) {
$array[count($array) - 1] .= $wd;
} else {
$array[] = $wd;
}
}
} else {
$array[] = $word;
}
}
$words = $array;
}
$word_count = count($words);
$i = 0;
$wrappedLine = '';
while ($i < $word_count) {
if ($this->widthForStringUsingFontsize($wrappedLine . ' ' . $words[$i], $style->getFont(), $style->getFontsize()) < $max_width) {
if (!empty($wrappedLine)) {
$wrappedLine .= ' ';
}
$wrappedLine .= $words[$i];
} else {
$wrappedText .= $wrappedLine . "\n";
$wrappedLine = $words[$i];
}
$i++;
}
$wrappedText .= $wrappedLine . "\n";
}
return ltrim($wrappedText);
}