mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
26 lines
685 B
PHP
26 lines
685 B
PHP
<?php
|
|
|
|
// Optionally define the filesystem path to your system fonts
|
|
// otherwise tFPDF will use [path to tFPDF]/font/unifont/ directory
|
|
// define("_SYSTEM_TTFONTS", "C:/Windows/Fonts/");
|
|
|
|
require('tfpdf.php');
|
|
|
|
$pdf = new tFPDF();
|
|
$pdf->AddPage();
|
|
|
|
// Add a Unicode font (uses UTF-8)
|
|
$pdf->AddFont('DejaVu','','DejaVuSansCondensed.ttf',true);
|
|
$pdf->SetFont('DejaVu','',14);
|
|
|
|
// Load a UTF-8 string from a file and print it
|
|
$txt = file_get_contents('HelloWorld.txt');
|
|
$pdf->Write(8,$txt);
|
|
|
|
// Select a standard font (uses windows-1252)
|
|
$pdf->SetFont('Arial','',14);
|
|
$pdf->Ln(10);
|
|
$pdf->Write(5,'The file size of this PDF is only 17 KB.');
|
|
|
|
$pdf->Output();
|
|
?>
|