Quantcast
Channel: Cocos中文社区 - 最新帖子
Viewing all articles
Browse latest Browse all 494966

微信小游戏保存本地用户文件怎么存图片

$
0
0

我这边是截图整个屏幕然后保存到相册,你看下可不可以用!
`canvas.toTempFilePath({
x: x,
y: y,
width: cw,
height: ch,
destWidth: pw,
destHeight: ph,
success: (res) => {
wx.saveImageToPhotosAlbum(
{
filePath: res.tempFilePath,
success: function (res) {
console.log("succes", res);

                        },
                        fail: function (res) {
                            console.log("fail", res);
                        },
                        complete: function (res) {
                            console.log("complete", res);
                        }
                    }
                )
            }
        }
        );`

Viewing all articles
Browse latest Browse all 494966

Trending Articles