Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Created April 19, 2025 00:51
Show Gist options
  • Save estefanionsantos/366e61f99a6207ee5c4f1674fbcef263 to your computer and use it in GitHub Desktop.
Save estefanionsantos/366e61f99a6207ee5c4f1674fbcef263 to your computer and use it in GitHub Desktop.
fpdf-tuto1-1
<?php
use Rubricate\Fpdf\FileFpdf;
$pdf = new FileFpdf();
$pdf->addPage();
$pdf->setFont('Arial','B',16);
$pdf->cell(40,10,'Hello World!');
$pdf->output();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment