Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
- $pdf->SetHeaderMargin(15);
- $pdf->SetTopMargin(5);
- $pdf->setFooterMargin(5);
- $pdf->SetAutoPageBreak(true);
- $pdf->setPrintHeader(false);
- $pdf->setPrintFooter(false);
- $pdf->setFontSubsetting(true);
- $pdf->SetFont('times', '', 12, '', true);
- $pagelayout = array(215, 330); // Ukuran mm
- $pdf->AddPage('P', $pagelayout);
- $html = $this->load->view('operator/pokmas/cetakproposal', $data, true, false, true, false, ''); // View
- $pdf->writeHTML($html);
- $pdf->lastPage();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement