我使用keith-wood的jQuery SVG插件创建了一个SVG rect.这是代码:
svg.graph._wrapper.rect(group,100,40,20,{fill: 'ivory',stroke: 'black',strokeWidth : 2});
所以我认为我可以轻松更改填充而不是使用’象牙’,我将其更改为’theImageIwantToUse’.但它似乎没有用.
解决方法
您可以使用< image>在svg中插入图片.元素
http://www.w3.org/TR/SVG/struct.html#ImageElement
svg.image(parent,x,y,width,height,ref,settings)
(http://keith-wood.name/svg.html)
我怀疑是否可以在图像中使用笔划,因此在绘制图像后您必须绘制一个没有填充的矩形以获得您想要的精确结果.