Создание собственного заголовка с TCPDF - PullRequest
0 голосов
/ 13 февраля 2019

Вот функция заголовка в tcpdf.php, я внес изменения и не расширил ее:

public function Header() {
    if ($this->header_xobjid === false) {
        // start a new XObject Template
        $this->header_xobjid = $this->startTemplate($this->w, $this->tMargin);
        $headerfont = $this->getHeaderFont();
        $headerdata = $this->getHeaderData();
        $this->y = $this->header_margin;
        if ($this->rtl) {
            $this->x = $this->w - $this->original_rMargin;
        } else {
            $this->x = $this->original_lMargin;
        }
        if (($headerdata['logo']) AND ($headerdata['logo'] != K_BLANK_IMAGE)) {
            $imgtype = TCPDF_IMAGES::getImageFileType(K_PATH_IMAGES.$headerdata['logo']);
            if (($imgtype == 'eps') OR ($imgtype == 'ai')) {
                $this->ImageEps(K_PATH_IMAGES.$headerdata['logo'], '', '', $headerdata['logo_width']);
            } elseif ($imgtype == 'svg') {
                $this->ImageSVG(K_PATH_IMAGES.$headerdata['logo'], '', '', $headerdata['logo_width']);
            } else {
                false);
                $this->Image(K_PATH_IMAGES.$headerdata['logo'], 'C', 4, $headerdata['logo_width'], '', 'PNG', false, 'C', false, 300, 'C', false, false, 0, false, false, false);
            }
            $imgy = $this->getImageRBY();
        } else {
            $imgy = $this->y;
        }
        $cell_height = $this->getCellHeight($headerfont[2] / $this->k);
        // set starting margin for text data cell
        if ($this->getRTL()) {
            $header_x = $this->original_rMargin + ($headerdata['logo_width'] * 1.1);
        } else {
            $header_x = $this->original_lMargin + ($headerdata['logo_width'] * 1.1);
        }
        $cw = $this->w - $this->original_lMargin - $this->original_rMargin - ($headerdata['logo_width'] * 1.1);
        $this->SetTextColorArray($this->header_text_color);
        // header title
        $this->SetFont($headerfont[0], 'B', $headerfont[2] + 1);
        $this->SetX($header_x);
        $this->MultiCell($cw, $cell_height, $headerdata['title'], 0, 'C', 0, 0, '', '', true, 0, false, true, 20, 'M');
        // header string
        $this->SetFont($headerfont[0], $headerfont[1], $headerfont[2]);
        $this->SetX($header_x);
        $this->MultiCell($cw, $cell_height, $headerdata['string'], 0, 'C', 0, 0, '', '', true, 0, false, true, 40, 'M');
        // print an ending header line
        $this->SetLineStyle(array('width' => 0.85 / $this->k, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => $headerdata['line_color']));
        $this->SetY((2.835 / $this->k) + max($imgy, $this->y));
        if ($this->rtl) {
            $this->SetX($this->original_rMargin);
        } else {
            $this->SetX($this->original_lMargin);
        }
        $this->Cell(($this->w - $this->original_lMargin - $this->original_rMargin), 0, '', 'T', 0, 'C');
        $this->endTemplate();
    }
    // print header template
    $x = 0;
    $dx = 0;
    if (!$this->header_xobj_autoreset AND $this->booklet AND (($this->page % 2) == 0)) {
        // adjust margins for booklet mode
        $dx = ($this->original_lMargin - $this->original_rMargin);
    }
    if ($this->rtl) {
        $x = $this->w + $dx;
    } else {
        $x = 0 + $dx;
    }
    $this->printTemplate($this->header_xobjid, $x, 0, 0, 0, '', '', false);
    if ($this->header_xobj_autoreset) {
        // reset header xobject template at each page
        $this->header_xobjid = false;
    }
}

Вот как это выглядит прямо сейчас

Вот как это должно выглядеть

Как видите, текст заголовка находится перед логотипом, он должен быть под логотипом.

логотип или текст не по центру, я не знаю почему.

Как сделать горизонтальную линию определенной длины?

Как придать заголовку определенный цвет шрифта и все остальноетекст другого цвета?

...