用cocos creator做微信小游戏截屏

前端之家收集整理的这篇文章主要介绍了用cocos creator做微信小游戏截屏前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考文档:https://developers.weixin.qq.com/minigame/dev/document/render/canvas/Canvas.toTempFilePathSync.html


核心代码

var canvas = cc.game.canvas;
    var width  = cc.winSize.width;
    var height  = cc.winSize.height;
    canvas.toTempFilePath({
        x: 0,y: 0,width: width,height: height,destWidth: width,destHeight: height,success (res) {
            //.可以保存该截屏图片
            console.log(res)
            wx.shareAppMessage({
                imageUrl: res.tempFilePath
            })
        }
    })


    // let tempFilePath = canvas.toTempFilePathSync({
    // x: 0,
    // y: 0,
    // width: width,
    // height: height,
    // destWidth: width,
    // destHeight: height
    // })
    // wx.shareAppMessage({
    // imageUrl: tempFilePath
    // })
原文链接:https://www.f2er.com/cocos2dx/338167.html

猜你在找的Cocos2d-x相关文章