Я установил мандарин в моем dompdf.Теперь, что происходит, когда я пытаюсь на моем компьютере с Windows, он работает нормально.Но в Ubuntu, когда я помещаю тот же код в XAMPP, сгенерированный PDF-файл копируется.Я использовал шрифт tangerine только с моими тегами h3, но в сгенерированном pdf стиль шрифта помещается во все тело.Вот мои настройки dompdf
<?php
// Include autoloader
require_once 'dompdf/autoload.inc.php';
// Reference the Dompdf namespace
use Dompdf\Dompdf;
// Instantiate and use the dompdf class
$dompdf = new Dompdf(array('isPhpEnabled' => true));
// Load content from html file
ob_start();
include_once 'pdfcontent.php';
$output = ob_get_clean();
$dompdf->loadHtml($output);
//$dompdf->loadHtml($html);
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('b4', 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF (1 = download and 0 = preview)
$dompdf->stream("funeral",array("Attachment"=>0));
?>