KineticJSステージの一部を保存したい。このコードは完璧に機能しています:
stage.toDataURL({
width: 350,
height: 350,
mimeType: "image/jpeg",
callback: function(dataUrl) {
/*
* here you can do anything you like with the data url.
* In this tutorial we'll just open the url with the browser
* so that you can see the result as an image
*/
window.open(dataUrl);
}
});
}, false);
しかし、私が欲しいのはそれにオフセットを追加することです。そうすれば、画像が始まり、ステージ領域の座標(75,75)になります。何か案が?