nekoray_Mahdi-zarei/3rdparty/QrDecoder.cpp
parhelia512 fd5f048ad9
refactor: migrate from zxing-cpp to quirc (#395)
* Replace zxing-cpp with quirc

* fix

* fix

* Update CMakeLists.txt
2025-05-16 22:45:28 -07:00

60 lines
1.1 KiB
C++

#include "QrDecoder.h"
#include "quirc/quirc.h"
QrDecoder::QrDecoder()
: m_qr(quirc_new())
{
}
QrDecoder::~QrDecoder()
{
quirc_destroy(m_qr);
}
QString QrDecoder::decode(const QImage &image)
{
if (m_qr == nullptr)
{
return "";
}
if (quirc_resize(m_qr, image.width(), image.height()) < 0)
{
return "";
}
uint8_t *rawImage = quirc_begin(m_qr, nullptr, nullptr);
if (rawImage == nullptr)
{
return "";
}
#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 "";
}
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)
{
return QLatin1String((const char *)data.payload);
}
}
return "";
}