f329b9488899a3db26a5f1a3b9d21f7983e768cd
Qt QR Code Generator Library
Qt QR Code Generator is a simple C++ class that uses the qrcodegen library to generate QR codes from QStrings in Qt applications.
Usage
- Copy the Qt-QrCodeGenerator folder in your
libfolder. - Include the Qt-QrCodeGenerator project include (pri) file using the
include()qmake function. - Use the
QrCodeGeneratorclass in your code:
#include <QrCodeGenerator>
QrCodeGenerator generator;
QString data = "https://www.example.com";
QImage qrCodeImage = generator.generateQRCode(data);
- That's all! Check the example project as a reference for your project if needed.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Languages
C++
93.5%
QMake
5.3%
CMake
1.2%
