This project is Qt & Qml wrapper for ZXing-C++ Library that is used for decoding and generating 1D and 2D barcodes. This particular C++ ZXing port is one of the most recent C++ versions of popular ZXing library using modern compilers.
Thanks to SCodes you can start scanning barcodes in few steps. We used Qt 5.15.2 and Qt 6.3.0 to built wrapper and example applications, but it's compatible with older Qt versions as well.
Implementation of same method for both Qt version does not seems possible(check why). We have ported the SCodes wrapper to Qt6 by following the multimedia changes.
There are plenty of supported formats and we constantly work on adding new.
Format | Supports scanning | Supports generating |
---|---|---|
UPC-A | ✔️ | ✔️ |
UPC-E | ✔️ | ✔️ |
EAN-8 | ✔️ | ✔️ |
EAN-13 | ✔️ | ✔️ |
DataBar | ✔️ | ❌ |
DataBar Expanded | ❌ | ❌ |
Code 39 | ✔️ | ✔️ |
Code 93 | ✔️ | ✔️ |
Code 128 | ✔️ | ✔️ |
Codabar | ✔️ | ✔️ |
ITF | ❌ | ✔️ |
Format | Supports scanning | Supports generating |
---|---|---|
QR Code | ✔️ | ✔️ |
DataMatrix | ✔️ | ✔️ |
Aztec | ✔️ | ✔️ |
PDF417 | ✔️ | ✔️ |
MaxiCode | ❌ | ❌ |
Feel free to read "How to scan barcodes in Qt Qml application" blog post if you are interested in the details behind scanning mechanism. Also you can try out the QmlReaderExample in order to see how it is working.
SCodes supports generating barcodes as well. It is covered in "How to generate barcode in Qt Qml" application blog post. Also you can try out the QmlGeneratorExample in order to see how it is working.
Above blog posts contains step by step tutorial on how to do that for Qt5 version. For Qt6 (see here).
All you need to do is to follow these steps.
- Add SCodes as submodule, by typing
git submodule add [email protected]:scytheStudio/SCodes.git
- Update submodule
git submodule update --recursive --init
(you can also put wrapper files to your project manually without adding submodule) - Add
include(scodes/src/SCodes.pri)
to your .pro file - If you want to use barcode reader functionality you need to register
SBarcodeFilter
class for Qt5 orSBarcodeScanner
class for Qt6. For both version, separate them with if directive to register as we did in barcode reader example(how to register reader class). As for barcode generator functionality you just need to registerSBarcodeGenerator
class(how to register generator class). - Import SCodes in your Qml file
import com.scythestudio.scodes 1.0
- Import multimedia module
import QtMultimedia 5.15
for Qt5 orimport QtMultimedia
for Qt6. - If build fails, try to add
CONFIG += c++17
to your .pro file - You are done. Get inspired by Qt5 QML Barcode Reader demo or Qt6 QML Barcode Reader demo to test wrapper.
-
Add SCodes as submodule, by typing
git submodule add [email protected]:scythestudio/scodes.git
-
Update submodule
git submodule update --recursive --init
(you can also put wrapper files to your project manually without adding submodule) -
Add to your project SCodes library
add_subdirectory(SCodes)
-
Link SCodes library to your library or executable.
target_link_libraries(${PROJECT_NAME} PUBLIC SCodes)
-
Import SCodes in your Qml file
import com.scythestudio.scodes 1.0
-
You are done. Get inspired by QML Barcode Reader demo to test wrapper.
Registering the barcode reader classes with if directive:
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
qmlRegisterType<SBarcodeFilter>("com.scythestudio.scodes", 1, 0, "SBarcodeScanner");
#else
qmlRegisterType<SBarcodeScanner>("com.scythestudio.scodes", 1, 0, "SBarcodeScanner");
#endif
Registering the barcode generator class with associated enum:
qmlRegisterType<SBarcodeGenerator>("com.scythestudio.scodes", 1, 0, "SBarcodeGenerator");
qmlRegisterUncreatableMetaObject(SCodes::staticMetaObject, "com.scythestudio.scodes", 1, 0, "SCodes", "Error: only enums");
Qt's multimedia library has major changes. The most importants are, changes in QML VideoOutput
, absence of QVideoFilterRunnable
and QAbstractVideoFilter
classes in Qt6.
SCodes library is using SBarcodeFilter
class for Qt5 and SBarcodesScanner
class for Qt6 version.
If you want to read more about implementation details of the library in Qt6 read the document: Implementation Details in Qt6
SBarcodeFilter
is a class that you need to use for scanning case. By default it scans only specific basic formats of code (Code 39, Code 93, Code 128, QR Code and DataMatrix.).
The goal of that is to limit number of possible formats and improve performance.
To specify formats that should be accepted by the SBarcodeFilter
instance, you need to set it's format
property accordingly. This property allows setting multiple enum values as it's for flags. Add the following to your SBarcodeFilter
item in Qml code:
Component.onCompleted: {
barcodeFilter.format = SCodes.OneDCodes
}
See the enumeration values that represent supported formats in SBarcodeFormat.h
To accept all supported formats use SCodes.Any
.
Both build systems have their examples located in same directory. All you need to do is to just open proper file(CMakeLists.txt or *.pro file) for different build system to be used.
PROJECT | BUILD SYSTEM | WINDOWS-MinGW | WINDOWS-MSVC | LINUX-GCC | ANDROID |
---|---|---|---|---|---|
QmlBarcodeReader | qmake | ✔️ | ✔️ | ✔️ | ✔️ |
QmlBarcodeGenerator | qmake | ✔️ | ✔️ | ✔️ | ✔️ |
QmlBarcodeReader | CMake | ❌ | ✔️ | ✔️ | ✔️ |
QmlBarcodeGenerator | CMake | ❌ | ✔️ | ✔️ | ✔️ |
PROJECT | BUILD SYSTEM | WINDOWS-MinGW | WINDOWS-MSVC | LINUX-GCC | ANDROID |
---|---|---|---|---|---|
QmlBarcodeReader | qmake | ✔️ | ✔️ | ✔️ | ✔️ |
QmlBarcodeGenerator | qmake | ✔️ | ✔️ | ✔️ | ✔️ |
QmlBarcodeReader | CMake | ✔️ | ✔️ | ✔️ | ✔️ |
QmlBarcodeGenerator | CMake | ✔️ | ✔️ | ✔️ | ✔️ |
Please ensure that proper Java & NDK version installed on your system. This examples tested w/ Java 11 and 22.1.7171670 Android NDK version.
We are a group of Qt and C++ enthusiasts whose goal is to address growing demand for cross-platform Qt development services. Thanks to our expertise in Qt Qml development, quality of deliveries and proven track of projects developed for companies from various industries we have been awarded the title of an official Qt Service Partner.
The company offers broad spectrum of services for the clients who wish to bring their ideas to life. We have extensive and practical knowledge about various Qt modules and other technologies allowing to create high quality product in a cost effective approach. If you want to see what Scythe Studio is is capable of and what services we provide, check out this link.
We offer professional support for those who need assistance with integrating SCodes library or require additional features. For more information on our support options and pricing, please contact us at [email protected]
Check out those links if you want to see Scythe Studio in action and follow the newest trends saying about Qt Qml development.