是否可以在php端使用svg原始数据(从结构js获取)生成pdf?
我搜索了一下,发现了这个例子:
https://tcpdf.org/examples/example_058/
但是除了svg图像不是svg原始数据,那么如何使用php在服务器端使用svg原始数据生成pdf?
答案 0 :(得分:1)
只需将您的svg
原始数据传递给ImageSVG
$svgRaw = '<svg height="80" width="300">
<g fill="none">
<path stroke="red" d="M5 20 l215 0" />
<path stroke="black" d="M5 40 l215 0" />
<path stroke="blue" d="M5 60 l215 0" />
</g>
Sorry, your browser does not support inline SVG.
</svg>';
$pdf->ImageSVG('@' . $svgRaw, $x=15, $y=30, $w='', $h='', $link='http://www.tcpdf.org', $align='', $palign='', $border=1, $fitonpage=false);
$pdf->Write(0, $txt='', '', 0, 'L', true, 0, false, false, 0);