I want to use Arial as the font for my PDF. But it only works in a local site, but not online. I am doing this project with Codeigniter. Below is my code.
@font-face {
font-family: "arial";
src: url('<?php echo admin_asset_url();?>/arial.ttf');
}
body,h1,h2,h3,li,a,p,h4{
font-family: "arial";
}
function pdf_create($html, $filename='', $stream=TRUE)
{
require_once("dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
if ($stream) {
$dompdf->stream($filename.".pdf");
} else {
return $dompdf->output();
}
}