Worth Imagick 有一张来自 Norgs 的 SVG 图片https://www.yr.no/en/content/67.568007,33.391146/meteogram.svg我 尝试将任务即时转换为 png
$svg = file_get_contents($url);
$im = new Imagick();
$im->readImageBlob('<?xml version="1.0" encoding="UTF-8" standalone="no"?>'.$svg);
$im->setImageFormat("png24");
header('Content-Type: image/png');
echo $im;
$imagic->clear();
$imagic->destroy();

只有 shell_exec('Inkscape file.svg file.png') 有帮助
必须在系统中安装 Inkscape 流浪,替换 exec(convert file.svg file.png)