From 94d923116ac2f369c7a451e43603cb8f74241e6f Mon Sep 17 00:00:00 2001 From: "sas.fajri" Date: Thu, 21 May 2026 13:46:02 +0700 Subject: [PATCH] Enlarge medical report watermark --- application/controllers/tools/Medical_checkup_report.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/tools/Medical_checkup_report.php b/application/controllers/tools/Medical_checkup_report.php index 587271ef..257c1dec 100644 --- a/application/controllers/tools/Medical_checkup_report.php +++ b/application/controllers/tools/Medical_checkup_report.php @@ -22,12 +22,12 @@ class MedicalCheckupReportPdf extends FPDF $imgW = intval($info[0]); $imgH = intval($info[1]); - $drawW = 158.0; + $drawW = 175.0; $drawH = ($imgH / $imgW) * $drawW; // Position tuned to match lab report reference. $x = ($this->GetPageWidth() - $drawW) / 2; - $y = 92.0; + $y = 86.0; $this->Image($this->watermarkPath, $x, $y, $drawW, $drawH, 'JPEG'); }