Dompdf没有加载字体

时间:2017-06-22 10:37:52

标签: php dompdf

所以我尝试了各种各样的东西来让Dompdf加载我的字体。我下载了它们并将它们放在文件夹中并使用了@font-face规则,我使用了google的导入代码,现在我将它们作为标准链接标记。不幸的是,我仍然无法加载它们。这是我的代码,任何人都可以帮忙吗?:

    <!DOCTYPE html>
    <html>
    <head>


    <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet">
    <style type="text/css">
    header div.right-text{
      color:#2364AA;font:'Lora',serif; font-weight: bold;font-size:50px;
    }
    </style>
    </head>
    <body>
    <header>

    <img src="<?php echo WP_CONTENT_DIR; ?>image.jpg" style="width:200px;float:left;margin-right:30px;" />
    <div class="right-text"><strong>Resident Directory</strong> <em><?php echo date('d M Y'); ?></em></div>

    </header>
    <?php while ( have_posts() ) : the_post(); ?>


        <!-- PAGE CONTENT : begin -->
        irrelevant
        <!-- PAGE CONTENT : end -->



    <?php endwhile; ?>
    <footer>
    </footer>
    </html>

0 个答案:

没有答案