0

我阅读了本教程,需要缓冲阶段的帮助。当用户单击“保存”时,我想缓存场景,包括所有拖放元素。我真的不知道我该怎么做。如果你有这方面的经验,请帮忙。

4

1 回答 1

1

您可以使用stage.toDataURL创建舞台的 URL 或图像

var myStage;

// have KineticJS convert the stage to a URL
stage.toDataURL({ 
  callback:imageDone
});

// callback after the URL has been created
// here we just make an image of the URL
function imageDone(stageDataURL){
  myStage=new Image();
  myStage.onload=function(){
      // your stage is now an image (myStage);
  }
  myStage.src=stageDataURL;
}
于 2013-08-05T13:35:39.233 回答