我坚持如何将图像绘制为SVG元素。到目前为止,我有:
content.append("image")
.attr("xlink:href",this.store.image_url);
但是如何获得此元素的自然宽度/高度?
答案 0 :(得分:4)
你可以用一些javascript
来做到这一点var img = new Image();
img.onload = function(){
img.naturalWidth and img.naturalHeight can be read off within here
};
img.src = this.store.image_url;