3
我想圖像添加到SVG與Bobril,但是這個代碼不工作:如何添加圖片到SVG與Bobril
{
tag: 'svg',
children: {
tag: 'image',
attrs: {
'xlink:href': 'https://raw.githubusercontent.com/Bobris/Bobril/master/logo.png',
x: 0,
y: 0,
width: 200,
height: 200
}
}
}
圖片標籤添加到頁面,但沒有圖像顯示。當我複製Chrome的DevTools的元素,並將其再次粘貼,圖像顯示。我究竟做錯了什麼?
這工作href是過時了,謝謝:) – Margarit
真正的原因,它的工作原理是這樣的線https://github.com/Bobris/Bobril/blob/e642be6b19b1a04a0990e48dd3806990f3eab76d/package/index .TS#L450 – Bobris