Qt生成二维码

Qt生成二维码需要第三方库qrencode。

  1、编译好的qrencode库获取:

    链接:https://pan.baidu.com/s/1rss-9LlDVmJ-mfNmK_dELQ

    提取码:h8lc

  2、Qt配置qrencode

    (1)右击Qt工程文件,出现菜单,选择【添加库】->【外部库】来添加qrencode库。

    (2)把qrencode.h头文件添加到工程中,然后包含头文件 #include "qrencode.h"

  3、代码生成二维码

  /**
   * @brief GernerateQRCode
   * 生成二维码函数
   * @param text  二维码内容
   * @param qrPixmap  二维码像素图
   * @param scale 二维码缩放比例
   */
  void GernerateQRCode(const QString &text, QPixmap &qrPixmap, int scale)
  {
     if(text.isEmpty())
     {
         return;
     }
 
     //二维码数据
     QRcode *qrCode = nullptr;
 
     //这里二维码版本传入参数是2,实际上二维码生成后,它的版本是根据二维码内容来决定的
     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、结果

原文链接:Qt生成二维码-QT开发中文网

展开阅读全文

页面更新:2024-05-08

标签:二维码   缩放   函数   像素   原文   菜单   版本   链接   内容   工程

1 2 3 4 5

上滑加载更多 ↓
推荐阅读:
友情链接:
更多:

本站资料均由网友自行发布提供,仅用于学习交流。如有版权问题,请与我联系,QQ:4156828  

© CopyRight 2008-2024 All Rights Reserved. Powered By bs178.com 闽ICP备11008920号-3
闽公网安备35020302034844号

Top