码迷,mamicode.com
首页 > 编程语言 > 详细

c++生成二维码

时间:2015-11-29 23:11:52      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:

vs2010编译好的qrencode库:http://files.cnblogs.com/files/verstin/qrencode.rar

版本是3.4.4

编译方法参考:http://blog.csdn.net/liyuanbhu/article/details/44647139

测试代码:

#include <iostream>
#include "qrencode.h"
using namespace std;
int main(int argc, char *argv[])
{
    QRcode *qr=QRcode_encodeString("http://www.cnblogs.com/verstin/",1,QR_ECLEVEL_L,  QR_MODE_8,1);

    int width=qr->width;
    int height=width;
    for (int y=0;y<height;y++)
    {
        for (int x=0;x<width;x++)
        {
            if(qr->data[y*width+x]&0x01)
                cout<<"##";
            else
                cout<<"  ";

        }
        cout<<endl;
    }
    QRcode_free(qr);

    cin.get();
}

技术分享

c++生成二维码

标签:

原文地址:http://www.cnblogs.com/verstin/p/5005610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!