First of all, congratulations! Nice script!

But my problem is with some hungarian characters, like: ő,ű
I'm using example00.php with some edits:
[code] // get the HTML
ob_start();
include(dirname(__FILE__).'/res/exemple00.php');
$content = ob_get_clean();
// convert in PDF
require_once(dirname(__FILE__).'/../html2pdf.class.php');
try
{
$html2pdf = new HTML2PDF('P', 'A4', 'en', true, 'UTF-8');
$html2pdf->pdf->SetDisplayMode('real');
// $html2pdf->setModeDebug();
$html2pdf->setDefaultFont('Arial');
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->Output('exemple00.pdf');
}
catch(HTML2PDF_exception $e) {
echo $e;
exit;
}[/code]
But these characters displayed as ?
What to do now?
