html转pdf背景图片

html to pdf conversion background image

我正在使用 yii 扩展程序将 html 转换为 pdf,这是我正在使用的 html 代码。

<table cellpadding="0" cellspacing="0" style="width:100%;">
        <tr>
            <td>
                <table cellpadding="0" cellspacing="0" style="width:100%;">
                    <tr>
                        <td style="text-align:center; width:100%; padding:35px 0 15px 0;"><img src="<?php echo Yii::app()->baseUrl;?>/images/digest_logo.png" /></td>
                    </tr>
                    <tr>
                        <td style="text-align:center; color:#2d2d2d;">April 18, 2016</td>
                    </tr>
                </table>
            </td>
        </tr>
        <tr>
            <td style="padding-top:20px;">
                <table cellpadding="0" cellspacing="0" style="width:100%; background:#f3f3f1;">
                    <tr>
                        <td style="width:100%; padding:40px 75px 35px;">
                            <h1 style="margin:0 0 35px 0; font-weight:normal; font-size:24px;">Hi, Patron</h1>
                            <p style="margin:0 0 4px 0; font-size:17px;">Greetings from Crownit,</p>
                            <p style="margin:0 0 4px 0; font-size:17px;">Crown it believes ut is very important to. make</p>
                            <p style="margin:0 0 4px 0; font-size:17px;">Lorem ipsum Lorem ipsumhhhhhhhhh hhhhhn </p>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
        <tr>
            <td style="background-image:url(<?php echo Yii::app()->baseUrl;?>/images/bg-script.png)">
                sdf
            </td>
        </tr>
    </table>

突然我卡在了一个我想使用的地方 background-image 因为我的设计是这样的

当我看到 pdf 格式的结果时,我收到了这个错误

Impossible to load the image C:/xampp/htdocs//var/www/html/insight/insight/images/bg-script.png

我不确定为什么这个背景 css 在 pdf 中不能很好地在浏览器中正常工作。

感谢任何帮助!

得到答案。

此 pdf 扩展的 css 支持非常少。

目前,仅支持以下 CSS 个属性:

  • 字体系列
  • 字体大小
  • 字体粗细
  • 字体样式
  • 颜色
  • 背景色
  • 文字装饰
  • 宽度
  • 身高
  • 文本对齐[=29​​=]

其他标签将不起作用。