Prison

pdf417barcode.h
1 /*
2  SPDX-FileCopyrightText: 2021 Volker Krause <[email protected]>
3 
4  SPDX-License-Identifier: MIT
5 */
6 
7 #ifndef PRISON_PDF417BARCODE_H
8 #define PRISON_PDF417BARCODE_H
9 
10 #include "abstractbarcode.h"
11 
12 namespace Prison
13 {
14 /** PDF417 barcode.
15  * @see https://en.wikipedia.org/wiki/PDF417
16  * @see ISO/IEC 15438
17  */
19 {
20 public:
21  explicit Pdf417Barcode();
22 
23 protected:
24  QImage paintImage(const QSizeF &size) override;
25 };
26 
27 }
28 
29 #endif // PRISON_PDF417BARCODE_H
PDF417 barcode.
Definition: pdf417barcode.h:18
QImage paintImage(const QSizeF &size) override
Doing the actual painting of the image.
base class for barcode generators To add your own barcode generator, subclass this class and reimplem...
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Dec 5 2023 03:59:26 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.