npm.io
1.0.3 • Published 2 years ago

xf_ocr

Licence
ISC
Version
1.0.3
Deps
1
Size
5 kB
Vulns
1
Weekly
0

xf_OCR

讯飞通用文字识别 OCR ocr

项目下载

npm i xf_ocr

项目使用

const { xf_OCR } = require('xf_ocr')

const config = {

 APISecret:'', //你的 APISecret 

 apiKey:'',//你的 apiKey

 appId:''//你的 appId

}

const imagePath = 'your picture path';
try {
    const response = await xf_OCR(config, imagePath)
    console.log(response);

} catch (err) {
    console.log(err);
}