我试图使用
Image-Magick与
PHP将SVG文本转换为PNG图像.这个SVG是用
NVD3生成的图表,我想允许我的用户以图像的形式下载它.
原文链接:https://www.f2er.com/php/132375.html基本上,我发送的SVG数据,用JSON编码到PHP处理程序,该处理程序应该将其作为PNG图像输出.
但是,这会抛出以下错误:
Fatal error: Uncaught exception 'ImagickException' with message 'no decode delegate for this image format `' @ blob.c/BlobToImage/347' in svg2png.PHP:4 Stack trace: #0 svg2png.PHP(4): Imagick->readimageblob('
用于转换图像的PHP脚本:
<?PHP /* Derived in part from: https://stackoverflow.com/a/4809562/937891 */ $svg=json_decode($_REQUEST["svgData"]); $im=new Imagick(); $im->readImageBlob($svg); $im->setImageFormat("png24"); header("Content-Type: image/png"); $thumbnail = $im->getImageBlob(); echo $thumbnail; ?>
HTML:
<form id="exportSpendTrendTrigger" method="POST" action="svg2png.PHP" target="_blank"> <input id="exportSpendTrendSvgData" type="hidden" name="svgData" /> <input type="submit" class="btn" value="Export" /> </form> <div id="spendtrend"> <svg></svg> </div>
jQuery的:
exportSpendTrend = function (e) { //Show the user the PNG-image version for download $("#exportSpendTrendSvgData").val( JSON.stringify($("#spendtrend").html().trim()) ); } $("#exportSpendTrendTrigger").on("submit",exportSpendTrend);
示例SVG,由NVD3:http://pastebin.com/Z3TvDK16生成