-2

如何使用 xhtml 或 html 旋转 TCPDF 中的 div 元素

用旋转css3测试没有工作

我需要帮助,css3 在最新版本的 TCPDF 中工作?

-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
writing-mode: lr-tb;
4

1 回答 1

2

TCPDF 有一个很好的 XHTML+CSS 示例我对其进行了一些更改。

// define some HTML content with style
$html = <<<EOF
    <style>
    ...
        div.test {
            color: #CC0000;
            background-color: #FFFF66;
            font-family: helvetica;
            font-size: 10pt;
            border-style: solid solid solid solid;
            border-width: 2px 2px 2px 2px;
            border-color: green #FF00FF blue red;
            text-align: center;
            -webkit-transform: rotate(270deg);
            -moz-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
            -o-transform: rotate(270deg);
        }
    </style>
    <div class="test">example of rotated DIV with border and fill.<br />Some text.</div>
EOF;

// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');

//Close and output PDF document
$pdf->Output('RotatedDIV_Sample.pdf', 'I');
于 2013-06-22T06:12:29.890 回答