12 lines
353 B
PHP
12 lines
353 B
PHP
<?php
|
|
ob_start();
|
|
require_once __DIR__ . '/lib/tfpdf/tfpdf.php';
|
|
require_once __DIR__ . '/lib/tfpdf/font/unifont/ttfonts.php';
|
|
|
|
$pdf = new tFPDF();
|
|
$pdf->AddPage();
|
|
$pdf->AddFont('DejaVu','','DejaVuSans.ttf',true);
|
|
$pdf->SetFont('DejaVu','',14);
|
|
$pdf->Cell(0,10,'Zażółć gęślą jaźń',0,1);
|
|
$pdf->Output('F', __DIR__ . '/test.pdf');
|
|
echo "Done\n"; |