arie wira kusuma baru 8876a6247d feat: 🔥 cetak laporan, cetak sertifikat, dashboard operator
cetak laporan ada 2 versi, cetak sertifikat dengan background gambar, dashboard untuk operator
2025-03-06 03:08:42 +08:00

11 lines
238 B
PHP
Executable File

<?php
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddFont('CevicheOne','','CevicheOne-Regular.php','.');
$pdf->AddPage();
$pdf->SetFont('CevicheOne','',45);
$pdf->Write(10,'Enjoy new fonts with FPDF!');
$pdf->Output();
?>