1e71b37bdb
Finalize all non-artifact changes accumulated from other sessions: - config updates, recipe changes, source edits, patches - pkgar/cache artifacts intentionally excluded (build outputs) This is the maximum achievable scope for this session. Hardware-accelerated KDE blocked by: QML gate, KWin/Plasma builds, hardware GPU validation — all require build system + physical GPU.
106 lines
4.0 KiB
C++
106 lines
4.0 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2024 Volker Krause <vkrause@kde.org>
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "config-prison-scanner.h"
|
|
|
|
#include "imagescanner.h"
|
|
#include "format.h"
|
|
#include "format_p.h"
|
|
#include "imagescanner_p.h"
|
|
#include "scanresult.h"
|
|
#include "scanresult_p.h"
|
|
|
|
#include <QImage>
|
|
|
|
#define ZX_USE_UTF8 1
|
|
#include <ZXing/BarcodeFormat.h>
|
|
#include <ZXing/ReadBarcode.h>
|
|
#include <ZXing/Result.h>
|
|
|
|
using namespace Prison;
|
|
|
|
ZXing::Result ImageScanner::readBarcode(const QImage &image, Format::BarcodeFormats formats)
|
|
{
|
|
ZXing::DecodeHints hints;
|
|
hints.setFormats(formats == Format::NoFormat ? ZXing::BarcodeFormats::all() : Format::toZXing(formats));
|
|
|
|
// handle formats ZXing supports directly
|
|
switch (image.format()) {
|
|
case QImage::Format_Invalid:
|
|
#if ZXING_VERSION < QT_VERSION_CHECK(1, 4, 0)
|
|
return ZXing::Result(ZXing::DecodeStatus::FormatError);
|
|
#else
|
|
return {};
|
|
#endif
|
|
case QImage::Format_Mono:
|
|
case QImage::Format_MonoLSB:
|
|
case QImage::Format_Indexed8:
|
|
break; // needs conversion
|
|
case QImage::Format_RGB32:
|
|
case QImage::Format_ARGB32:
|
|
case QImage::Format_ARGB32_Premultiplied:
|
|
return ZXing::ReadBarcode({image.bits(), image.width(), image.height(), ZXing::ImageFormat::XRGB, (int)image.bytesPerLine()}, hints);
|
|
case QImage::Format_RGB16:
|
|
case QImage::Format_ARGB8565_Premultiplied:
|
|
case QImage::Format_RGB666:
|
|
case QImage::Format_ARGB6666_Premultiplied:
|
|
case QImage::Format_RGB555:
|
|
case QImage::Format_ARGB8555_Premultiplied:
|
|
break; // needs conversion
|
|
case QImage::Format_RGB888:
|
|
return ZXing::ReadBarcode({image.bits(), image.width(), image.height(), ZXing::ImageFormat::RGB, (int)image.bytesPerLine()}, hints);
|
|
case QImage::Format_RGB444:
|
|
case QImage::Format_ARGB4444_Premultiplied:
|
|
break; // needs conversion
|
|
case QImage::Format_RGBX8888:
|
|
case QImage::Format_RGBA8888:
|
|
case QImage::Format_RGBA8888_Premultiplied:
|
|
return ZXing::ReadBarcode({image.bits(), image.width(), image.height(), ZXing::ImageFormat::RGBX, (int)image.bytesPerLine()}, hints);
|
|
case QImage::Format_BGR30:
|
|
case QImage::Format_A2BGR30_Premultiplied:
|
|
case QImage::Format_RGB30:
|
|
case QImage::Format_A2RGB30_Premultiplied:
|
|
break; // needs conversion
|
|
case QImage::Format_Alpha8:
|
|
#if ZXING_VERSION < QT_VERSION_CHECK(1, 4, 0)
|
|
return ZXing::Result(ZXing::DecodeStatus::FormatError);
|
|
#else
|
|
return {};
|
|
#endif
|
|
case QImage::Format_Grayscale8:
|
|
return ZXing::ReadBarcode({image.bits(), image.width(), image.height(), ZXing::ImageFormat::Lum, (int)image.bytesPerLine()}, hints);
|
|
case QImage::Format_Grayscale16:
|
|
return ZXing::ReadBarcode({image.bits() + 1, image.width(), image.height(), ZXing::ImageFormat::Lum, (int)image.bytesPerLine(), 1}, hints);
|
|
case QImage::Format_RGBX64:
|
|
case QImage::Format_RGBA64:
|
|
case QImage::Format_RGBA64_Premultiplied:
|
|
break; // needs conversion
|
|
case QImage::Format_BGR888:
|
|
return ZXing::ReadBarcode({image.bits(), image.width(), image.height(), ZXing::ImageFormat::BGR, (int)image.bytesPerLine()}, hints);
|
|
case QImage::Format_RGBX16FPx4:
|
|
case QImage::Format_RGBA16FPx4:
|
|
case QImage::Format_RGBA16FPx4_Premultiplied:
|
|
case QImage::Format_RGBX32FPx4:
|
|
case QImage::Format_RGBA32FPx4:
|
|
case QImage::Format_RGBA32FPx4_Premultiplied:
|
|
break; // needs conversion
|
|
|
|
case QImage::NImageFormats: // silence warnings
|
|
#if ZXING_VERSION < QT_VERSION_CHECK(1, 4, 0)
|
|
return ZXing::Result(ZXing::DecodeStatus::FormatError);
|
|
#else
|
|
return {};
|
|
#endif
|
|
}
|
|
|
|
const auto converted = image.convertedTo(QImage::Format_Grayscale8);
|
|
return ZXing::ReadBarcode({converted.bits(), converted.width(), converted.height(), ZXing::ImageFormat::Lum, (int)converted.bytesPerLine()}, hints);
|
|
}
|
|
|
|
ScanResult ImageScanner::scan(const QImage &image, Format::BarcodeFormats formats)
|
|
{
|
|
return ScanResultPrivate::fromZXingResult(ImageScanner::readBarcode(image, formats));
|
|
}
|