【问题标题】:Will mPDF show font Awesome Icons?mPDF 会显示字体 Awesome Icons 吗?
【发布时间】:2015-10-29 09:00:17
【问题描述】:

我想在 pdf 视图中显示字体很棒的图标。我尝试过这样的事情。

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">

<table class="table table-hover table-bordered">
            <thead>
              <tr>
                <th>#</th>  
                <th>Account</th>
                <th>Debit</th>
                <th>Credit</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>1</td>
                <td><?php echo $model->account; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->debit; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
              </tr>
              <tr>
                <td>2</td>
                <td><?php echo $model->against; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->debit; ?></td>
              </tr>
              <tr>
                <td colspan="2"></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
              </tr>
            </tbody>
        </table>

它没有工作。所以我用谷歌搜索,我发现了另一个问题

i tried this link here

基于此,我像这样更改了我的代码

<table class="table table-hover table-bordered">
            <thead>
              <tr>
                <th>#</th>  
                <th>Account</th>
                <th>Debit</th>
                <th>Credit</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>1</td>
                <td><?php echo $model->account; ?></td>
                <td><i class="fa"> &#xf156;</i> <?php echo $model->debit; ?></td>
                <td><i class="fa"> &#xf156;</i> <?php echo $model->credit; ?></td>
              </tr>
              <tr>
                <td>2</td>
                <td><?php echo $model->against; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->debit; ?></td>
              </tr>
              <tr>
                <td colspan="2"></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
                <td><i class="fa fa-inr"></i> <?php echo $model->credit; ?></td>
              </tr>
            </tbody>
        </table>

(我只更改了两个字段)。还从 github 下载了 fontawesome 文件并将 fonts/fontawesome-webfont.ttf 复制到您的 MPDF ttfonts/ 目录中。 在我的 MDPF config_fonts.php 文件中,我添加了链接中提到的行,但它也不起作用。

【问题讨论】:

标签: yii2 font-awesome mpdf


【解决方案1】:

我遇到了同样的问题,请按照此处How to use Font Awesome with MPDF? 的答案中的所有步骤进行操作,对我来说关键是添加 font-family:fontawesome;例如

<i style="font-family:fontawesome;" class="fa">&#xf118;</i>

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2019-12-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-08-21
    • 2016-11-05
    • 2014-11-22
    相关资源
    最近更新 更多