[TOC]
简要描述
请求URL
http://localhost:30001/QRCodeParse
请求方式
参数
参数名 |
类型 |
说明 |
qrfilepath |
string |
要识别的二维码文件路径 |
发送示例
{
"qrfilepath": "C:\\1.PNG"
}
返回参数说明
参数名 |
类型 |
说明 |
index |
string |
序号 |
path |
string |
传入文件路径 |
content |
string |
识别后的二维码内容 |
type |
string |
二维码类型</br>19=方形二维码</br>22=圆形二维码 |
返回示例
{
&quot;qrcode&quot;:[{
&quot;index&quot;:&quot;1&quot;,
&quot;path&quot;:&quot;C:\\1.PNG&quot;,
&quot;content&quot;:&quot;二维码又称二维条码,常见的二维码为QR Code,QR全称Quick Response,是一种编码方式。它比传统的Bar Code条形码能存更多的信息,也能表示更多的数据类型。二维条码/二维码(2-dimensional bar code)是用某种特定的几何图形按一定规律在平面&quot;,
&quot;type&quot;:&quot;19&quot;
}]
}
备注