用cocos creator截图一个小游戏,分享给大家。谢谢大家!

var canvas = cc . game . canvas;

var width = cc . winsize . width;

var height = cc . winsize . height;

canvas.toTempFilePath({

x: 0,

y: 0,

宽度:宽度,

身高:身高,

destWidth:宽度,

destHeight:身高,

成功(res) {

//.你可以保存这个截图。

console.log(res)

wx.shareAppMessage({

imageUrl: res.tempFilePath

})

}

})