小程序
小游戏
企业微信
微信支付
扫描小程序码分享
微信版本8.0.13.34 ,鸿蒙版本(6.0.0.115 SP16)使用uni.createCanvasContext绘制图片添加水印然后用uni.canvasToTempFilePath导出,结果图片不完整 在ios android 上都正常。
1 个回答
本回答由AI生成,可能已过期、失效或不适用于当前情形,请谨慎参考
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
{
canvasId: ‘watermarkCanvas’,
x: 0,
y: 0,
width: this.canvasWidth,//原始图片的宽
height: this.canvasHeight,//原始图片的高
destWidth: this.canvasWidth * this.dpr : this.canvasWidth,//图片宽*像素比
destHeight: t this.canvasHeight * this.dpr : this.canvasHeight,,//图片高*像素比
fileType: ‘jpg’, 件大小
quality: 1,
success: async res => {
// 获取压缩后文件大小
resolve(res.tempFilePath); // 压缩失败则使用原路径
},
fail: err => {
reject(err);
},
},
this,
);
}, 1000);