最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Create SVG from base64 in javascript - Stack Overflow

programmeradmin2浏览0评论

i am new to javascript.

i want to create SVG from base64. i am trying / but it doesnt show anything.

 var image="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==";
 var svgimg = document.createElementNS("", "image");
 svgimg.setAttributeNS("", 'xlink:href', image);

 document.getElementById("mySvg").appendChild(svgimg);

and html:

 <svg id="mySvg" xmlns="" xmlns:xlink=""></svg>

base64 should be correct, cause i took it from this / example

I am doing something stupid or just wrong approach?

thanks

i am new to javascript.

i want to create SVG from base64. i am trying http://jsfiddle/XTUmV/28/ but it doesnt show anything.

 var image="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==";
 var svgimg = document.createElementNS("http://www.w3/2000/svg", "image");
 svgimg.setAttributeNS("http://www.w3/1999/xlink", 'xlink:href', image);

 document.getElementById("mySvg").appendChild(svgimg);

and html:

 <svg id="mySvg" xmlns="http://www.w3/2000/svg" xmlns:xlink="http://www.w3/1999/xlink"></svg>

base64 should be correct, cause i took it from this http://jsfiddle/MxHPq/ example

I am doing something stupid or just wrong approach?

thanks

Share Improve this question asked Nov 19, 2013 at 14:18 user2224342user2224342 851 gold badge2 silver badges4 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

You forgot to give the <image> tag some dimensions:

var image="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==";
var svgimg = document.createElementNS("http://www.w3/2000/svg", "image");
// new
svgimg.setAttribute( 'width', '100' );
svgimg.setAttribute( 'height', '100' );

svgimg.setAttributeNS("http://www.w3/1999/xlink", 'xlink:href', image);


document.getElementById("mySvg").appendChild(svgimg);

Edited Fiddle

发布评论

评论列表(0)

  1. 暂无评论