View File Name : example_006.php
int main() {
printf("HelloWorld");
return 0;
}
Monospace font, normal font,
monospace font, normal font.
DIV LEVEL 1
DIV LEVEL 2
DIV LEVEL 1
SPAN LEVEL 1 SPAN LEVEL 2 SPAN LEVEL 1
EOF;
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// test custom bullet points for list
// add a page
$pdf->AddPage();
$html = <<
Test custom bullet image for list items
- test custom bullet image
- test custom bullet image
- test custom bullet image
- test custom bullet image
EOF;
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// reset pointer to the last page
$pdf->lastPage();
// ---------------------------------------------------------
//Close and output PDF document
$pdf->Output('example_006.pdf', 'I');
//============================================================+
// END OF FILE
//============================================================+