<?php // --------------------------------- // HTML 2 (F)PDF // Homepage for this class: // http://html2fpdf.sourceforge.net/ // Homepage for the class which it is based on: // http://www.fpdf.org/ // --------------------------------- require_once('html2fpdf.php'); ob_start(); ?> <html> <body> <h1>My PDF test</h1> <div align="center">Hello, World!</div> </body> </html> <?php $html = ob_get_contents(); ob_end_clean(); $pdf = new HTML2FPDF(); $pdf->SetTopMargin(1); $pdf->AddPage(); $pdf->WriteHTML($html); $pdf->Output('test.pdf','D'); ?>