キネティクスに問題があります。画像とテキストが 1 つのキネティクスを備えたステージがありますが、ステージを myImage.jpg のような画像にエクスポートする必要があります。キネティクス。
私はこのコードで試しています:
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);
キングよろしく!