I downloaded dompdf from : https://github.com/dompdf/dompdf I included the library in my application
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper('A4', 'Portrait');
$dompdf->render();
but i got the following error "/php-font-lib/classes/Font.php" is missing
Does anyone know where I can find a simple working example on how to get started with dompdf?
The php-font-lib folder is a link to a different repository: https://github.com/PhenX/php-font-lib
You should download that too and copy the contents of the src/FontLib folder as a 'classes' subfolder in the php-font-lib directory. Then you'll be able to load the Font class.