- 小程序无法提交审核?
我2023-12-26上传的小程序包,无法提交发布,点击提交按钮没有用,浏览器也无报错
2023-12-26 - 根据image的file怎么获取这个图片有多少M(不通过chooseImage来获得)?
现在有个需求是获取一个image的大小,但是不是调取chooseImage来获取,我是通过canvas画出的图片,然后想看一下这个图片多大
2020-07-22 - Canvas将图片画小反而越画尺寸越大,为什么?
在iOS是真机上画出的图片还是有按比例缩小的,安卓的越压缩越大,机型vivo NEX安卓10以下是代码 // imginfo.originWidth 是初始的宽度 imginfo.originHeight 是初始的高度 // imginfo.toWidth和imginfo.toHeight是希望压缩到的宽度和高度 while (imginfo.toWidth > 750) { // 限制宽度不超过750 imginfo.toWidth /= 2; imginfo.toHeight /= 2; } //设置canvas的宽高 that.setData({ toHeight: imginfo.toHeight / 2, toWidth: imginfo.toWidth / 2 }); const ctx = wx.createCanvasContext('photo_canvas'); console.log(imginfo.toWidth / 2, imginfo.toHeight / 2); ctx.drawImage(tempFilePaths[0], 0, 0, imginfo.originWidth, imginfo.originHeight, 0, 0, imginfo.toWidth / 2, imginfo.toHeight / 2); console.log(imginfo); ctx.draw(false, () => { wx.canvasToTempFilePath({ canvasId: 'photo_canvas', fileType: 'jpg', success(canvasRes) { console.log('XXXXXYYXXXXX', canvasRes); wx.getImageInfo({ src: canvasRes.tempFilePath, success(imG) { console.log('OOOOOO', imG); // 这里打印的宽高比初始的图片宽高还大 } }); // 上传文件 that.uploadImageFetch([canvasRes.tempFilePath], imgType, stepIndex); } [图片] 最上面的第二行打印的是要压缩到的宽度和高度375 和 804也就是drawImage的最后两个参数,结果 canvas画出的图片宽高是下面的 [图片] OOOOOO下面的就是canvas画出的图片宽度竟然是1125比初始没压缩的宽度都要宽
2020-07-22 - 小程序有时候不提示版本更新为什么?
小程序检查更新第一次提示了版本更新,第二次发版后没有提示
2020-07-03 - iphone8真机 日期转换异常:2020/07/03 00:00:00
[图片][图片]
2020-07-03 - 提交审核无法过审?
我提交审核被拒绝说我的分类没有数据,后来我们后台把一数据完善了再次提交审核,还是拒绝同样的理由,我在体验版看到的是有数据的[图片]之前是说这个没数据,你们不能提供人工服务吗?
2020-04-03