Custom Fonts for DOMPDF

前端 未结 3 1340
囚心锁ツ
囚心锁ツ 2020-12-23 17:22

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

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-23 18:17

    you can add css font :

    @font-face {
        font-family: new_font;
        src: url('my_font.ttf');
    }
    

    and than

    div.ClJ{
        font-family: new_font; 
    }
    

提交回复
热议问题