I used this greatfull programm without problems.

1. TTF Font load from http://www.fontsaddict.com/font/eminenz.html and copy it in my "fonts" folder
2. With http://www.fpdf.org/makefont/ I have convert this TTF Font to "eminez.php" (CP1252). The error messages I have ignored.
3. I have copied "eminenz.php" in my "fonts" folder, too
what´s wrong ?
here my script. Hope, you can help me

<style>
@font-face
{
font-family: "eminenz"; src: url("../fonts/eminenz.ttf") format("truetype");
}
</style>
<?php
$text='<div style="position:relative; width:800px; border-style:solid; border-width:1px; border-color:#C0C0C0; font-family:eminenz; font-size:30px; text-align: left; color: #4642EF;">This is a test ....</div>'; // Durch weglassen von "font-family:eminenz;" korrekte Erstellung
echo $text;
require_once(dirname(__FILE__).'/../html2pdf/html2pdf.class.php');
try
{
$oben=5; //mT
$unten=0; //mB
$links=0; //mL
$rechts=0; //mR
$html2pdf = new HTML2PDF('P','A4','de', false, 'UTF-8', array($links, $oben, $rechts, $unten));
$html2pdf->pdf->SetDisplayMode('fullpage');
$html2pdf->addFont('eminenz', '', '../fonts/eminenz.php');
$html2pdf->writeHTML($text, isset($_GET['vuehtml']));
$html2pdf->Output('test.pdf', 'F');
}
catch(HTML2PDF_exception $export) {
echo $export;
exit;
}
?>