HFC : Fix logo width an height on pdf

This commit is contained in:
narindraezway 2025-08-11 17:13:43 +03:00
parent 65cc06133e
commit 084a5739d0
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ class InvoiceGroupPdfHandler extends FPDF
function Header() function Header()
{ {
if ($this->logo != "nothing") { if ($this->logo != "nothing") {
$this->Image($this->logoPath . "logo.png", 4, 2, 50, 35); $this->Image($this->logoPath . "logo.png", 4, 2, 36, 37);
// $this->AddWatermark(); // $this->AddWatermark();
} else { } else {
$this->Cell(55, 30, ''); $this->Cell(55, 30, '');

View File

@ -52,7 +52,7 @@ class InvoicePdfHandler extends FPDF
function Header() function Header()
{ {
if ($this->logo != "nothing") { if ($this->logo != "nothing") {
$this->Image($this->logoPath . "logo.png", 4, 2, 50, 35); $this->Image($this->logoPath . "logo.png", 4, 2, 36, 37);
// $this->AddWatermark(); // $this->AddWatermark();
} else { } else {
$this->Cell(55, 30, ''); $this->Cell(55, 30, '');