pdflib table(php)右边的alignin文本使它跳起来

时间:2018-01-05 12:46:45

标签: php pdflib

我还有另一个创建PDF的问题。

我写了一个通用函数,它将创建一个表。

// to set up a table one needs to supply: 
// the font detailss for 
// the header and the table body (font, fontsize, textPosition)
//
// the multidimensional array to hold info about the header
// headerText, columnWidth
// for advanced users
// extra seetings can be added to each column as a key=>value
// pair in the 'additional' array
//
// table body requires a multidimensional array that will hold
// an array of field values for every row
//
// coordinates for the lower left and upper right corners
// lowerLeftX, lowerLeftY and upperRightX, upperRightY
protected function displayTable(
    $headerFont=array('fontName'=>'', 'fontEncoding'=>'', 'fontSize'=>''), 
    $headers=array( array('headerText'=>'', 'columnWidth'=>'', 'textPosition'=>'',
                        'additional'=>array()), 
                    array('headerText'=>'', 'columnWidth'=>'', 'textPosition'=>'',
                        'additional'=>array())),
    $fieldsFont=array('fontName'=>'', 'fontEncoding'=>'', 'fontSize'=>''), 
    $fields=array(array(    
                    array('value'=>'fieldValue', 'textPosition'=>''),
                    array('value'=>'fieldValue', 'textPosition'=>'')
                    )),
    $lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY,
    $tableOptions = "header=1 rowheightdefault=auto"){

    $table = 0;
    $headFont = 0;

    //generate headers
    $row = 1;
    $headFont = pdf_load_font($this->pdf, $headerFont['fontName'], $headerFont['fontEncoding'], "");

    if ($headFont == 0) {

        die("Error: " . pdf_get_errmsg($this->pdf));

    }
    $col = 0;

    foreach ($headers as $header){

        $col++;

        $optionList = "fittextline={position=".$header['textPosition']." 
                        font=" .$headFont. " 
                        fontsize=".$headerFont['fontSize']."} 
                        colwidth=".$header['columnWidth'];

        if ((isset($header['additional'])) && (!empty($header['additional']))){

            foreach ($header['additional'] as $key=>$value){

                $optionList.=" ".$key."=".$value;

            }

        }

        $table = pdf_add_table_cell($this->pdf,$table, $col, $row, $header['headerText'], $optionList);

        if ($table == 0) {

            die("Error: " . pdf_get_errmsg($this->pdf));

        }

    }

    //the rest of the fields
    $bodyFont = pdf_load_font($this->pdf, $fieldsFont['fontName'], $fieldsFont['fontEncoding'], "");
    if ($bodyFont == 0) {

        die("Error: " . pdf_get_errmsg($this->pdf));

    }

    foreach ($fields as $line){

        $row ++;
        $col = 0;

        foreach($line as $field){

            $col++;

            $optionList = "fittextline={position=".$field['textPosition']." 
                        font=" .$bodyFont. " 
                        fontsize=".$fieldsFont['fontSize']."} ";

            $table = pdf_add_table_cell($this->pdf,$table, $col, $row, $field['value'], $optionList); 

        }

        if ($table == 0) {

            die("Error: " . pdf_get_errmsg($this->pdf));

        }
    }

    // Place the table instance 

    $result = pdf_fit_table($this->pdf, $table, $lowerLeftX, $lowerLeftY, 
                $upperRightX, $upperRightY, $tableOptions);

    if ($result ==  "_error") {

        die("Couldn't place table: " . pdf_get_errmsg($pdf));

    }

     pdf_delete_table($this->pdf, $table, "");

}

自从我更新了热门评论后,我做了一些更改,但功能相当直接(如果您可以说有关PDFLib的相关功能:&#39 ;-(),并且通常会遵循评论

我需要其中一个字段中的文字与右侧对齐

当我在另一个类中调用该函数并随后在页面上显示它时,我在右侧设置对齐的字段会略微向上跳跃并且不会垂直对齐。我对此感到非常困惑。

这是调用函数的代码

    //set up a table
    parent::displayTable(
    $headerFont=array('fontName'=>'ZEISSFrutigerNextW1G-BoldIt', 'fontEncoding'=>'unicode',
                'fontSize'=>'9'), 
    $headers=array( array('headerText'=>'Artikelnummeb', 'columnWidth'=>60
                    , 'textPosition'=>'left', 'additional'=>array('margin'=>4)), 
                    array('headerText'=>'Artikelbezeichnung', 'columnWidth'=>230
                    , 'textPosition'=>'left', 'additional'=>array('margin'=>4)),
                    array('headerText'=>'EAN', 'columnWidth'=>70
                    , 'textPosition'=>'left', 'additional'=>array('margin'=>2)),
                    array('headerText'=>'Preis (brutto)', 'columnWidth'=>65
                    , 'textPosition'=>'left', 'additional'=>array('margin'=>0))),
    $fieldsFont=array('fontName'=>'ZEISSFrutigerNextW1G-Light', 'fontEncoding'=>'unicode', 
                'fontSize'=>'9'), 
    $fields=array(  array(array('value'=>'01234567890123', 'textPosition'=>'left'), 
                        array('value'=>'fieldValue', 'textPosition'=>'left'), 
                        array('value'=>'8888888888888', 'textPosition'=>'left'), 
                        array('value'=>'99999.99 Eur', 'textPosition'=>'right')),


                    array(array('value'=>'01234567890123', 'textPosition'=>'left'), 
                        array('value'=>'fieldValue', 'textPosition'=>'left'), 
                        array('value'=>'8888888888888', 'textPosition'=>'left'), 
                        array('value'=>'99999.99 Eur', 'textPosition'=>'right')),

                    array(array('value'=>'01234567890123', 'textPosition'=>'left'), 
                        array('value'=>'fieldValue', 'textPosition'=>'left'), 
                        array('value'=>'8888888888888', 'textPosition'=>'left'), 
                        array('value'=>'99999.99 Eur', 'textPosition'=>'right')),

                    array(array('value'=>'01234567890123', 'textPosition'=>'left'), 
                        array('value'=>'fieldValue', 'textPosition'=>'left'), 
                        array('value'=>'8888888888888', 'textPosition'=>'left'), 
                        array('value'=>'99999.99 Eur', 'textPosition'=>'right'))),
    111, 50, 551, 400,
    $tableOptions = "header=1 rowheightdefault=auto ");

结果如下

crucked table

欢迎任何解决方法的想法

P.S。我确定我只是遗漏了一些可笑的东西,但那些是最难找到的东西:(

1 个答案:

答案 0 :(得分:1)

position选项有一个或两个值。从PDFlib API参考,第6.1章,表6.1:

  

左,中,右(x方向)或底部,中心,顶部(y方向)的关键字可用作   值0,50和100的等价物。如果只指定了一个关键字,则使用相应的关键字   将添加另一个方向。

在您的代码中,您设置:

       $optionList = "fittextline={position=".$field['textPosition']." 
                    font=" .$bodyFont. " 
                    fontsize=".$fieldsFont['fontSize']."} ";

表示您只应用一个值。当您应用right(表示100)时,您将获得与position={right 100}相同的值,这意味着右上角。

在您的情况下,我建议将代码扩展为:

       $optionList = "fittextline={position={".$field['textPosition']." bottom}  
                    font=" .$bodyFont. " 
                    fontsize=".$fieldsFont['fontSize']."} ";

因此您right bottom与默认的left bottom相似。