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
you can add css font :
@font-face { font-family: new_font; src: url('my_font.ttf'); }
and than
div.ClJ{ font-family: new_font; }