Qt生成二維碼需要第三方庫(kù)qrencode。
1、編譯好的qrencode庫(kù)獲取:
鏈接:
https://pan.baidu.com/s/1rss-9LlDVmJ-mfNmK_dELQ
提取碼:h8lc
2、Qt配置qrencode
(1)右擊Qt工程文件,出現(xiàn)菜單,選擇【添加庫(kù)】->【外部庫(kù)】來添加qrencode庫(kù)。
(2)把qrencode.h頭文件添加到工程中,然后包含頭文件 #include "qrencode.h"
3、代碼生成二維碼
/**
* @brief GernerateQRCode
* 生成二維碼函數(shù)
* @param text 二維碼內(nèi)容
* @param qrPixmap 二維碼像素圖
* @param scale 二維碼縮放比例
*/
void GernerateQRCode(const QString &text, QPixmap &qrPixmap, int scale)
{
if(text.isEmpty())
{
return;
}
//二維碼數(shù)據(jù)
QRcode *qrCode = nullptr;
//這里二維碼版本傳入?yún)?shù)是2,實(shí)際上二維碼生成后,它的版本是根據(jù)二維碼內(nèi)容來決定的
qrCode = QRcode_encodeString(text.toStdString().c_str(), 2,
QR_ECLEVEL_Q, QR_MODE_8, 1);
if(nullptr == qrCode)
{
return;
}
int qrCode_Width = qrCode->width > 0 ? qrCode->width : 1;
int width = scale * qrCode_Width;
int height = scale * qrCode_Width;
QImage image(width, height, QImage::Format_ARGB32_Premultiplied);
QPainter painter(&image);
QColor background(Qt::white);
painter.setBrush(background);
painter.setPen(Qt::NoPen);
painter.drawRect(0, 0, width, height);
QColor foreground(Qt::black);
painter.setBrush(foreground);
for(int y = 0; y < qrCode_Width; ++y)
{
for(int x = 0; x < qrCode_Width; ++x)
{
unsigned char character = qrCode->data[y * qrCode_Width + x];
if(character & 0x01)
{
QRect rect(x * scale, y * scale, scale, scale);
painter.drawRects(&rect, 1);
}
}
}
qrPixmap = QPixmap::fromImage(image);
QRcode_free(qrCode);
}
void slot_GenerateQRCode()
{
QPixmap qrPixmap;
int width = ui->label_ShowQRCode->width();
int height = ui->label_ShowQRCode->height();
GernerateQRCode(ui->textEdit_Text->toPlainText(), qrPixmap, 2);
qrPixmap = qrPixmap.scaled(QSize(width, height),
Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
ui->label_ShowQRCode->setPixmap(qrPixmap);
}
4、結(jié)果