mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-18 20:50:09 +08:00
* Replace zxing-cpp with quirc * fix * fix * Update CMakeLists.txt * Detect multiple QR codes at once
61 lines
1.2 KiB
C++
61 lines
1.2 KiB
C++
#include "QrDecoder.h"
|
|
|
|
#include "quirc/quirc.h"
|
|
|
|
QrDecoder::QrDecoder()
|
|
: m_qr(quirc_new())
|
|
{
|
|
}
|
|
|
|
QrDecoder::~QrDecoder()
|
|
{
|
|
quirc_destroy(m_qr);
|
|
}
|
|
|
|
QVector<QString> QrDecoder::decode(const QImage &image)
|
|
{
|
|
QVector<QString> result;
|
|
if (m_qr == nullptr)
|
|
{
|
|
return result;
|
|
}
|
|
|
|
if (quirc_resize(m_qr, image.width(), image.height()) < 0)
|
|
{
|
|
return result;
|
|
}
|
|
|
|
uint8_t *rawImage = quirc_begin(m_qr, nullptr, nullptr);
|
|
if (rawImage == nullptr)
|
|
{
|
|
return result;
|
|
}
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
|
std::copy(image.constBits(), image.constBits() + image.sizeInBytes(), rawImage);
|
|
#else
|
|
std::copy(image.constBits(), image.constBits() + image.byteCount(), rawImage);
|
|
#endif
|
|
quirc_end(m_qr);
|
|
|
|
const int count = quirc_count(m_qr);
|
|
if (count < 0)
|
|
{
|
|
return result;
|
|
}
|
|
|
|
for (int index = 0; index < count; ++index)
|
|
{
|
|
quirc_code code;
|
|
quirc_extract(m_qr, index, &code);
|
|
|
|
quirc_data data;
|
|
const quirc_decode_error_t err = quirc_decode(&code, &data);
|
|
if (err == QUIRC_SUCCESS)
|
|
{
|
|
result.append(QLatin1String((const char *)data.payload));
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|