1 回答

TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超14個(gè)贊
仔細(xì)觀察 ezText 函數(shù)會(huì)發(fā)現(xiàn)僅最后一段的對(duì)齊方式發(fā)生了變化,如我的示例所示。作為一種解決方法,我在每個(gè)段落/行的 for 循環(huán)之前保存了對(duì)齊輸入,并刪除了最后一段的單獨(dú)處理:
public function ezText($text, $size = 0, $options = array(), $test = 0)
{
...
$justification_Input = $just;
for ($i = 0; $i < $c; $i++) {
$just = $justification_Input;
$line = $lines[$i];
$start = 1;
while (strlen($line) || $start) {
...
if ($just == 'full'){ // && $c == $i + 1) {
$tmp = $this->addText($left, $this->y, $size, $line, $right - $left, $just, 0, 0, 1);
if (!strlen($tmp)) {
$just = "left";
}
}
...
- 1 回答
- 0 關(guān)注
- 128 瀏覽
添加回答
舉報(bào)