我有使用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显示为空。为什么会这样?
答案 0 :(得分:0)
尝试删除data:
后的空格。 URI语法规范明确禁止URI中的空格。请参阅https://tools.ietf.org/html/rfc2396
可能是浏览器是宽松的,但其他程序不是。
如果这没有改变任何东西,那么可能只是那些程序不支持SVG <image>
中的数据URI。