我想从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));
}