PHPMailer6
auswertung
bootstrap
classes
config
controller
dashboard
datepicker
fpdf186
FPDI-master
doc
font
makefont
tutorial
20k_c1.txt
20k_c2.txt
CevicheOne-Regular-Licence.txt
CevicheOne-Regular.php
CevicheOne-Regular.ttf
CevicheOne-Regular.z
countries.txt
index.htm
logo.png
makefont.php
tuto1.htm
tuto1.php
tuto2.htm
tuto2.php
tuto3.htm
tuto3.php
tuto4.htm
tuto4.php
tuto5.htm
tuto5.php
tuto6.htm
tuto6.php
tuto7.htm
tuto7.php
FAQ.htm
FPDI-master.zip
changelog.htm
fpdf.css
fpdf.php
install.txt
license.txt
jquery
js
language
lib
media
msd
selfregistration
sql
survey
templates
test
tinymce
.gitignore
Hinweise_zu_php8.txt
config.inc.php
todo.txt
11 lines
238 B
PHP
11 lines
238 B
PHP
<?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();
|
|
?>
|