3

次のコードを使用して、FPDF を使用して見出しと日付を並べて表示しています。

$this->SetFont('Helvetica', 'B', 30);
$this->Cell(120, 20, 'Rechnung 20130809-78');

$this->SetFont('Helvetica', '', 10);
$this->Cell(0, 20, '09. 08. 2013');

しかし、テキストは適切に配置されていません:

日付が高すぎます。

ベースラインが同じ高さになるようにするにはどうすればよいですか?

要素の 1 つの位置を手動で調整する必要があるソリューションは必要ありません。入力するすべてのフォントサイズで動作する必要があります。

Cell メソッドで y 位置を自動的に調整しようとしましたが、テキストはベースラインではなく下部 (g が終了する場所) に配置されます。

public function Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=false, $link='') {
    $text = utf8_decode($txt);

    $startX = $this->GetX();
    $startY = $this->GetY();

    $this->SetY($startY - $this->FontSize / 2);
    $this->SetX($startX);

    parent::Cell($w, $h, $txt, $border, $ln, $align, $fill, $link);

    $endX = $this->GetX();
    $endY = $this->GetY();

    $this->SetY($startY);
    $this->SetX($endX);
}

それらは、ベースラインではなく下部に配置されます。

私がやろうとしていることをする方法はありますか?私を助けてください!上の画像の緑色の線は同じ高さにあるはずです。

4

1 に答える 1

1

ここに解決策があります:

function drawTextBox($strText, $w, $h, $align='L', $valign='T', $border=true)
{
        $xi=$this->GetX();
        $yi=$this->GetY();

        $hrow=$this->FontSize;
        $textrows=$this->drawRows($w,$hrow,$strText,0,$align,0,0,0);
        $maxrows=floor($h/$this->FontSize);
        $rows=min($textrows,$maxrows);

        $dy=0;
        if (strtoupper($valign)=='M')
                $dy=($h-$rows*$this->FontSize)/2;
        if (strtoupper($valign)=='B')
                $dy=$h-$rows*$this->FontSize;

        $this->SetY($yi+$dy);
        $this->SetX($xi);

        $this->drawRows($w,$hrow,$strText,0,$align,false,$rows,1);

        if ($border)
                $this->Rect($xi,$yi,$w,$h);
}

ソース: https://github.com/lsolesen/fpdf/blob/master/examples/textbox/textbox.php

そのためのアドオンもあります: http://fpdf.de/downloads/addons/52/

于 2013-11-29T15:36:39.930 に答える