코코스 크리에이터로 위챗 미니 게임 캡처.

참조 문서: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
    // })

좋은 웹페이지 즐겨찾기