朋友,解决了么?
新版开发工具canvas读取临时图片报403?发现此问题的开发工具版本:1.06.2303060[图片] 另一台电脑原本没问题,特意远程查看,更新后出问题 [图片]
2023-05-12你的 canvasId对应canvas的height、width ,设置1024以下试一试。 我是设置之后就成功了。
uni.canvasToTempFilePath 画布保存成图片部分机型会出现空白?是什么原因?使用uni.canvasToTempFilePath 绘制图片,部分机型会出现空白,ios出现率高,第一次生成图片的时候显示空白,偶尔会出现截取图片部分展示,再次上传图片会展示正常,各位大佬们有遇到过吗?怎么解决的? [图片]上传图片白屏; 在开发没复现,都是在用户那边报的。提供了几个账号图片也没复现。 ctxs.draw( false, setTimeout(() => { uni.canvasToTempFilePath( { canvasId: _this.canvasId, fileType: "jpg", width: originWidth, height: originHeight, quality: 1, success: (res) => { let isTempFilePath = res.tempFilePath; resolve(res.tempFilePath) uni.getFileInfo({ filePath:res.tempFilePath, success:imgInfo => { console.log(imgInfo.size, 'quality 前 图片大小sizesize'); uni.compressImage({ src: isTempFilePath, // 图片路径 quality: 1, // 图片压缩质量,0~100,默认80,仅对jpg有效 success: res => { if (index == 1) { let type = 0 if(this.role == 4 ||this.role == 8){ type = 1 } uploadimg(type, res.tempFilePath).then(rps => { this.zhuanghuoimglist.push(rps.message) }) }else if (index == 2){ uploadimg(type, res.tempFilePath).then(rps => { this.danjuimglist.push(rps.message) }) } }) } } } }) }, fail: (err) => { console.log(err) }, complete: () => { uni.hideLoading() } }, that ) }, 1000) )
2023-02-15