Hi i am trying create a helper to convert a entire html from a CTP to PDF using tcpdf->writeHTML();
I have tried:
function beforeLayout(){
ob_clean();
ob_start();
$pageOrientation = 'P';
$this->setup($pageOrientation);
$this->pdf->AddPage();
$this->pdf->setPrintHeader(false);
$this->pdf->setPrintFooter(false);
$this->pdf->SetFont('times','B',8);
$this->pdf->writeHTML(ob_get_contents(), false, false, false, false, 'L');
echo $this->pdf->Output('x.pdf', 'D');
}
But without sucess :(