如下代码
this.session = wx.createVKSession({
track: {
OCR: {
mode: 2
}
},
version: 'v1',
});
this.session.on('updateAnchors', anchors => {
console.log(TAG, 'init VisionKit updateAnchors', JSON.stringify(anchors));
anchors.map((anchor) => {
console.log('init VisionKit updateAnchors text', anchor.text);
});
})
this.session.start(errno => {
logger.info(TAG, 'init VisionKit error:', errno);
if (errno) {
return;
}
});
this.session?.runOCR({
frameBuffer: this.imgData.data.buffer,
width: this.data.ocrImgOriginWidth,
height: this.data
如标题所描述:拍照或者返回照片后,进行ocr识别,没有反应,
微信版本:8.0.32
小程序基础库版本:2.30.0,
但是同样的代码,微信版本降级到8.0.28后,对应的小程序库版本是2.27.3,这段代码就可以识别出文字,
请大神帮忙看下是什么原因?
微信8.0.43也不行
8.0.33 也不行,官方 demo 的也无响应。
https://github.com/wechat-miniprogram/miniprogram-demo
微信快更新吧,8.0.32 bug 一大堆
微信bug 坐等更新就好了、8.0.32版本问题