I created a Konva image like this
var imageObj = new Image();
imageObj.onload = function() {
var image = new Konva.Image({
x: 200,
y: 50,
image: imageObj,
width: 100,
height: 100
});
};
imageObj.src = '/path/to/image.jpg'
Now I need to know how to update the image src/url of created Konva.Image Object.
You can find the docs here: https://konvajs.github.io/api/Konva.Image.html