SVG 嵌入图像仅在浏览器中显示

SVG embedded image displays in Browser ONLY

我有使用 Raphael.js 以编程方式生成的 SVG 文件。 Raphael 输出使用 PHP 写入实际文件。 SVG 包含嵌入为 Base64 编码数据的图像。文件如下所示:

<svg height="644" version="1.1" width="740" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="overflow: hidden; position: relative; top: -0.583008px;" viewBox="0 0 740 644" preserveAspectRatio="xMidYMid meet">
<image x="185" y="161" width="370" height="370" preserveAspectRatio="none" xlink:href="data: image/png;base64,iVBORw [-- lots of Base64-Data --] ==" transform="matrix(1.3696,-0.3064,0.3064,1.3696,-391.7711,-44.4982)" style="" stroke-width="0.7125311771299471"></image>
<desc>Created with Raphaël 2.2.0</desc>
<defs></defs>
</svg>

这是一个示例文件:http://www.mybinaryromance.com/files/0.218636001483456524.svg

图像在浏览器中正确显示(在 Ubuntu 上测试过 Firefox 和 Chromium),但是在其他应用程序(Ubuntu 图像查看器、GIMP、TCPDF...)中显示 SVG空的。为什么会这样?

尝试删除 data: 之后的 space。 URI 语法规范特别禁止在 URI 中使用 space。请参阅 https://www.rfc-editor.org/rfc/rfc2396

的第 2.4.3 节

可能是浏览器比较宽容,但其他程序不是。

如果这没有任何改变,那么可能只是这些程序不支持 SVG 中的数据 URI <image>s。