If I use this code, it will generate a pdf file of about 760kb !!.
$pdf= new HTML2FPDF();
$pdf->Output("test1.pdf","F");
760kb !!!!!!!!
Because I didn't put any content in the pdf yet, I would expect a much smaller filesize. When I use fpdf instead of html2fpdf the filesize is only a few kb.
$pdf= new FPDF();
$pdf->Output("test2.pdf","F");
Only 1 kb!!.....
What's going on here?