微信截图分享

key:良辰乐微信截图分享
微信截图分享

canvas.toTempFilePathSync({
                destWidth: 500,
                destHeight: 400
                }),

属性 类型 默认值 是否必填 说明 支持版本
x number 0 否 截取 canvas 的左上角横坐标
y number 0 否 截取 canvas 的左上角纵坐标
width number canvas 的宽度 否 截取 canvas 的宽度
height number canvas 的高度 否 截取 canvas 的高度
destWidth number canvas 的宽度 否 目标文件的宽度,会将截取的部分拉伸或压缩至该数值
destHeight number canvas 的高度 否 目标文件的高度,会将截取的部分拉伸或压缩至该数值
fileType string png 否 目标文件的类型
quality number 1.0 否 jpg图片的质量,仅当 fileType 为 jpg 时有效。取值范围为 0.0(最低)- 1.0(最高),不含 0。不在范围内时当作 1.0

完整分享如下:

wx.shareAppMessage({
            title: '我发起了一场xxx,谁来和我一战?',
            success: function (res) {
                console.log('拉起分享 成功', res);
            },
            fail: function (res) {
              console.log('拉起分享 失败');
            },
            query: 'roomId=' + roomId + '&pwd=' + pwd,
            imageUrl: canvas.toTempFilePathSync({
                destWidth: 500,
                destHeight: 400
                }),
        });

你可能感兴趣的:(微信截图分享)