* libdir . '/pdflib.php'); * TCPDF_FONTS::addTTFfont('/full_path_to/ARIALUNI.TTF', 'TrueTypeUnicode'); *
* $doc = new pdf; * $doc->setPrintHeader(false); * $doc->setPrintFooter(false); * $doc->AddPage(); * $doc->Write(5, 'Hello World!'); * $doc->Output(); *