in Education by
I have uploaded a small example here. It is composed of 3 files. I would like to use DOMPDF to render a Laravel view on the server side. I realized the font I am using Open Sans is not working so I made a simpler test which shows the same issue. If you try to call index.php wou will get this PDF in which the Lorem title is not rendered with Open Sans. composer.json { "name": "nowox/test-dompdf", "require": { "dompdf/dompdf": "^0.8.3", "webfontkit/open-sans": "^1.0" } } index.php <?php require 'vendor/autoload.php'; use Dompdf\Dompdf; use Dompdf\Options; $options = new Options(); $options->set('defaultFont', 'Open Sans'); $options->set('fontDir', 'vendor/webfontkit/open-sans/fonts'); $dompdf = new Dompdf($options); $dompdf->loadHtml(file_get_contents('template.html')); $dompdf->setPaper('A4'); $dompdf->render(); $dompdf->stream(); index.html * { font-family: 'Open Sans'; } h1 { font-family: 'Open Sans'; }

Lorem

Lorem ipsum

JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Dompdf (up to and including 0.8.3) does not support numeric font weights (see issue #675). You'll have to modify your stylesheet to only use "bold" or "normal" for the font weight.

Related questions

0 votes
    The face attributes of tag is used to specify the name of the font. True or false no spam messages plzz… Select the correct answer from above options...
asked Dec 29, 2021 in Education by JackTerrance
0 votes
    Write html code to set the BGCOLOR as NAVY, header 1 text Text Example with size, colour and font face'' as ... font face ARIAL . Select the correct answer from above options...
asked Dec 29, 2021 in Education by JackTerrance
0 votes
    give the shortcut key to open font dialog with font size selection Select the correct answer from above options...
asked Dec 7, 2021 in Education by JackTerrance
0 votes
    give the shortcut key to open font dialog with font size selection Select the correct answer from above options...
asked Dec 5, 2021 in Education by JackTerrance
0 votes
    Question No.1: What do you understand about container tag and empty tag, give example? Question No.2: What do ... all the attributes? Select the correct answer from above options...
asked Nov 29, 2021 in Education by JackTerrance
0 votes
    give the shortcut key to open font dialog with font size selection Select the correct answer from above options...
asked Nov 26, 2021 in Education by JackTerrance
0 votes
    I need to write SQL statement that will return an html table and specify font size to its content. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    Can S3 Be Cast-off With Ec2 Instances, In Case Of “yes” Please Specify How ?...
asked Mar 12, 2021 in Technology by JackTerrance
0 votes
    I've noticed that the chart object has a fontSize property, but just changing it does nothing, even with ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 2, 2022 in Education by JackTerrance
0 votes
    I would like to use Font Awesome locally without using the cdn. My code fails to add font awesome ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 27, 2022 in Education by JackTerrance
0 votes
    I use the vendor time picker component. Unfortunately, it uses rem units for most of its sizes, but ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    I'm using Visual Studio 2008 and the built-in installation tools for a C# client application. How can ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    I'm using Visual Studio 2008 and the built-in installation tools for a C# client application. How can ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    I'm using Visual Studio 2008 and the built-in installation tools for a C# client application. How can ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 17, 2022 in Education by JackTerrance
0 votes
    I want to display an indexed table view. By default, section index titles have gray color. How do ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
...