File indexing completed on 2024-05-12 15:49:08

0001 /*
0002     SPDX-FileCopyrightText: 2021 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: MIT
0005 */
0006 
0007 #ifndef PRISON_PDF417BARCODE_H
0008 #define PRISON_PDF417BARCODE_H
0009 
0010 #include "abstractbarcode.h"
0011 
0012 namespace Prison
0013 {
0014 /** PDF417 barcode.
0015  *  @see https://en.wikipedia.org/wiki/PDF417
0016  *  @see ISO/IEC 15438
0017  */
0018 class Pdf417Barcode : public AbstractBarcode
0019 {
0020 public:
0021     explicit Pdf417Barcode();
0022 
0023 protected:
0024     QImage paintImage(const QSizeF &size) override;
0025 };
0026 
0027 }
0028 
0029 #endif // PRISON_PDF417BARCODE_H