现在越来越多的网站采取图片验证码,防止机器恶意向服务端发送请求。但是常规的图片验证码也不是非常安全了。有非常多第三方库可以对图片上的数字文字等进行识别。
代码实现
首先安装依赖:
npm install node-native-ocr
npm:(node-native-ocr – npm (npmjs.com))
github:(stoefln/node-native-ocr (github.com))
import { recognize } from "node-native-ocr"; import fs from "fs-extra"; import path from "path"; fs.readFile('C:Users86139Desktopnodeestaticimage.jpg').then(recognize).then(console.log); // 'node-native-ocr'
但是经过我一系列测试,这个的准确度并不高,希望后续后有改进吧。
到此这篇关于Node.js图片验证码识别的文章就介绍到这了,更多相关Node.js验证码识别内容请搜索IT俱乐部以前的文章或继续浏览下面的相关文章希望大家以后多多支持IT俱乐部!