小程序
小游戏
企业微信
微信支付
扫描小程序码分享
图片内容安全检测的api,一是图片尺寸符合要求小于1M了,但是为何还是老是提示图片大于1M。二是图片日常检测成功率低。你们有遇到过类似情况吗?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
image的size有么。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) exports.main = async (event, context) => { const fileID = event.fileID const res = await cloud.downloadFile({ fileID: fileID }) const Buffer = res.fileContent try { const result = await cloud.openapi.security.imgSecCheck({ media: { contentType: 'image/png', value: Buffer } }) return result } catch (error) { return error } }
调用:
// 选择图片上传 upload() { let timestamp = Date.now() wx.chooseImage({ success: res => { wx.showLoading({ title: '上传中' }) // 将图片上传至云存储空间 wx.cloud.uploadFile({ // 指定上传到的云路径 cloudPath: timestamp + '.png', // 指定要上传的文件的小程序临时文件路径 filePath: res.tempFilePaths[0], // 成功回调 success: todo => { console.log('上传成功', todo) wx.hideLoading() wx.showToast({ title: '上传图片成功', }) this.setData({ imgUrl: todo.fileID || '' }) } }) } }) }, // 点击校验 handleClick() { wx.cloud.callFunction({ name: 'imgSecCheck', data: { fileID: this.data.imgUrl }, success: res => { console.log(res) if (res.result.errCode === 0) { wx.showToast({ title: '图片正常' }) } else if (res.result.errCode === 87014) { wx.showToast({ title: '图片存在违规内容', icon: 'none' }) } }, fail: err => { console.log(err) } }) }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
image的size有么。
const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) exports.main = async (event, context) => { const fileID = event.fileID const res = await cloud.downloadFile({ fileID: fileID }) const Buffer = res.fileContent try { const result = await cloud.openapi.security.imgSecCheck({ media: { contentType: 'image/png', value: Buffer } }) return result } catch (error) { return error } }
调用:
// 选择图片上传 upload() { let timestamp = Date.now() wx.chooseImage({ success: res => { wx.showLoading({ title: '上传中' }) // 将图片上传至云存储空间 wx.cloud.uploadFile({ // 指定上传到的云路径 cloudPath: timestamp + '.png', // 指定要上传的文件的小程序临时文件路径 filePath: res.tempFilePaths[0], // 成功回调 success: todo => { console.log('上传成功', todo) wx.hideLoading() wx.showToast({ title: '上传图片成功', }) this.setData({ imgUrl: todo.fileID || '' }) } }) } }) }, // 点击校验 handleClick() { wx.cloud.callFunction({ name: 'imgSecCheck', data: { fileID: this.data.imgUrl }, success: res => { console.log(res) if (res.result.errCode === 0) { wx.showToast({ title: '图片正常' }) } else if (res.result.errCode === 87014) { wx.showToast({ title: '图片存在违规内容', icon: 'none' }) } }, fail: err => { console.log(err) } }) }