如何使用Codeigniter在dompdf中加粗和更改字体

时间:2019-07-20 10:58:37

标签: codeigniter-3 dompdf

我想从HTML数据生成pdf。 粗体和字体更改在本地主机中工作,但不在联机(Web服务器)中工作 如何在以下代码中设置粗体和自己的字体选项?

public function generate_pdf()
{
    $data['generate_pdf_data'] = $this->Prints_Model->fetch_generate_pdf_data();
    $this->load->view('prints_data', $data);
    $html = $this->output->get_output();
    $this->load->library('pdf');
    $this->pdf->loadHtml($html);
    $this->pdf->setPaper('A4', 'portrait');
    $this->pdf->render();
    $this->pdf->stream("Generated Data.pdf", array("Attachment"=> 0));
}

0 个答案:

没有答案