4 Star 0 Fork 2

daowm/qrcode-qt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
qrcodetools.cpp 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
daowm 提交于 2017-04-23 23:09 . 17.4.23更新
#include "qrcodetools.h"
#include "common/modelindicator.h"
#include "common/versions.h"
#include "generate/qrcodecreator.h"
#include "common/stringutils.h"
#include "decoder/decoder.h"
#include <string>
#include <vector>
#include <QString>
#include <QDebug>
namespace qrcode{
QRCodeTools::QRCodeTools()
{
}
std::string QRCodeTools::GetModelIndicator(std::string &msg)
{
ModelIndicator *pModelIndicator = new ModelIndicator();
if(pModelIndicator->AnalysisData(msg))
{
std::string modelIndi = pModelIndicator->GetModelIndicator();
StringUtils::PRINT("模式指示符:"+QString::fromStdString(modelIndi));
return modelIndi;
}
else
{
qDebug() << "输入信息有误!";
}
}
bool QRCodeTools::GenerteQRCode(std::string msg, char errorLevel)
{
std::string modelIndicator = GetModelIndicator(msg);
Versions *qVersions = new Versions();
if(qVersions->IsWithinCapacity(msg.length(), modelIndicator, errorLevel)){
QRCodeCreator *pQRCodeCreator = new QRCodeCreator(msg, errorLevel, modelIndicator);
pQRCodeCreator->setPic(pic);
if(pQRCodeCreator->Create()){
return true;
} else {
return false;
}
} else {
qDebug() << "without capacity";
return false;
}
}
std::string QRCodeTools::DecodeQRCode(std::__cxx11::string file)
{
StringUtils::PRINT("-----二维码解码-----");
Decoder *pdecoder = new Decoder();
pdecoder->setImagefile(file);
pdecoder->Decoding();
}
void QRCodeTools::setCOE(int value)
{
pic.setCOE(value);
}
void QRCodeTools::setFilepath(const std::string &value)
{
pic.setFilepath(value);
}
void QRCodeTools::setFilename(const std::string &value)
{
pic.setFilename(value);
}
void QRCodeTools::setPicFormat(const std::string &value)
{
pic.setPicFormat(value);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yujiantianm/qrcode-qt.git
git@gitee.com:yujiantianm/qrcode-qt.git
yujiantianm
qrcode-qt
qrcode-qt
master

搜索帮助