I\'m Using DOM PDF 0.6.0 Beta 2. I want to use custom fonts (Fonts: \'Segeo Print\', \'Lucida Handwriting\',\'Airplanes in the Night Sky\') in PDF file.
I followed t
php load_font.php your_fonts_name ./your-normal.ttf ./your-bold.ttf ./your-bold-italic.ttf
font-family: your_fonts_name;
If you want to install custom fonts to the server without a command-based interface then you can do the following web-based model to install the custom fonts
no need for root or command/terminal access
you can add css font :
@font-face {
font-family: new_font;
src: url('my_font.ttf');
}
and than
div.ClJ{
font-family: new_font;
}