这是我装饰舞台的方式:
every time user drag an image outside KineticJS:
create a image onto where it is dropped
layer.add(new_image)
stage.add(layer)
finally:document.getElementById('save').addEventListener('click', function() {
stage.toDataURL({
callback: function(dataUrl) {
window.open(dataUrl);
}
});
}, false);
并且在 html 中有一个 id=save 的按钮
所有图像都来自我的本地机器。有什么建议么?谢谢!!