我想知道如何將JPG圖像包含在SVG中!使用JavaScript將JPEG嵌入到SVG中
var ns = 'http://www.w3.org/2000/svg';
var svg = document.createElementNS(ns, 'svg');
svg.setAttribute('width', 800);
svg.setAttribute('height', 450);
var image = document.createElementNS(ns, 'image');
image.setAttribute('href', 'http://placehold.it/300x300');
image.setAttribute('x', 0);
image.setAttribute('y', 0);
image.setAttribute('width', 800);
image.setAttribute('height', 450);
svg.appendChild(image);
document.body.appendChild(svg);
哪裏是我的錯?
這是什麼問題?爲我工作 –
你看到圖像了嗎?! – Timo
是的,你使用什麼瀏覽器? –