我想从我的HTML脚本生成PDF。现在该脚本是
<?php
require_once __DIR__ . '/vendor/autoload.php';
$mpdf = new \Mpdf\Mpdf();
$mpdf->WriteHTML('<div class="pageContatiner noSelect ui-droppable slctCon"><div onmousedown="objSelection(this)" ontouchstart="objSelection(this)" id="pmObj-1" class="shape obj" style="width: 136.217px; height: 136.217px; position: absolute; transform: matrix(-0.491017, -0.87115, 0.87115, -0.491017, 0, 0); margin-left: 312px; margin-top: 99px;" x="330" y="117" angle="240.59253473738065" scalex="1" scaley="1"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" height="136.2166748046875" width="136.2166748046875"><polygon class="svgObj" fill="rgba(51,122,183,1)" stroke="rgba(51,122,183,0.99)" stroke-width="1" points="96,100 50,5 4,100" width="136.2166748046875" height="136.2166748046875"></polygon></svg></div></div>');
$mpdf->Output();
?>
但是问题是这里的三角形图标没有旋转显示。
答案 0 :(得分:1)
将SVG保存到文件中,然后通过支持CSS img
属性的transform: rotate
元素将其链接:
<img src="triangle.svg" id="pmObj-1" class="shape obj" style="transform: rotate(45deg);">
答案 1 :(得分:-1)
您可能想尝试PrinceXML-这是一个Linux命令行工具,专门用于将HTML + CSS转换为可打印的PDF。有一个PHP wrapper class,我通常这样使用它
include_once("./inc/prince.php");
if($template = @file_get_contents($tmpdir.'/temp/deal/custom/show/pr_offer3.htm'))
{
// populate/fill placeholders in your template with the real values
// e.g. $template = str_replace('{PLACE_HOLDER}', $real_value, $template);
// finally generate the PDF and send it to browser - the class offers
// also possibility to save as file locally on server
$prince = new Prince('/usr/bin/prince');
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename="offer_'.$_REQUEST['id'].'.pdf"');
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
ob_end_flush();
$prince->setHTML(true);
$prince->setBaseURL('http://my.domain.com'); // to resolve relative URLs in the HTML
$prince->convert_string_to_passthru($template);
}