资源简介

支持的条码和二维码包括:EAN/UPC,QR EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 39, Interleaved 2 of 5 and QR Code 支持图片 jpg bmp png等 vs2013 c++ 条码 二维码识别 通过ZBar和ImageMagick实现 vs 运行库需要设置成 MT 或 MD 否则无法识别 注:只有动态库 和c++调用

资源截图

代码片段和文件信息


#include 
#include “Barcode.h“
using namespace std;
void main()
{

string s b;


if (getzbar(“img\\barcode.png“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;

if (getzbar(“img\\IMG_0146.JPG“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;

if (getzbar(“img\\IMG_0226.JPG“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;


if (getzbar(“img\\IMG_0227.JPG“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;

if (getzbar(“img\\IMG_0228.JPG“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;

if (getzbar(“img\\kkk.bmp“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;

if (getzbar(“img\\liantu.png“ s b))  cout << “类型:“ << s << “序列号:“ << b << endl;

system(“pause“);

}

评论

共有 条评论