QrCode Reader for Node.js
Find and identify the QRCode in the picture
JavaScript QRCode reader for Node.js
This is a port of LazarSoft / jsqrcode https://github.com/LazarSoft/jsqrcode
How to use?
node main.js
https://qr.api.onlyke.com/reader?url=[image_url]
{
"status":0,
"error":"There are some errors"
}
{
"status": 1,
"content": "The text of QR"
}
实现图片中的二维码识别,基于Node.js
找到并识别图片中的二维码
基于 LazarSoft / jsqrcode https://github.com/LazarSoft/jsqrcode
如何使用
node main.js
https://qr.api.onlyke.com/reader?url=[图片地址]
一个例子: https://qr.api.onlyke.com/reader?url=https://github.com/mydansun/QrCode-Reader-Node.js/raw/master/test/test.jpg
{
"status":0,
"error":"这里是错误信息"
}
{
"status": 1,
"content": "这是二维码的文本内容"
}