We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a76ba53 commit d270b3fCopy full SHA for d270b3f
example/ZXingWriter.cpp
@@ -40,7 +40,11 @@ static void PrintUsage(const char* exePath)
40
<< " -version Print version information\n"
41
<< "\n"
42
<< "Supported formats are:\n";
43
+#ifdef ZXING_EXPERIMENTAL_API
44
+ for (auto f : BarcodeFormats::all())
45
+#else
46
for (auto f : BarcodeFormatsFromString("Aztec Codabar Code39 Code93 Code128 DataMatrix EAN8 EAN13 ITF PDF417 QRCode UPCA UPCE"))
47
+#endif
48
std::cout << " " << ToString(f) << "\n";
49
50
std::cout << "Format can be lowercase letters, with or without '-'.\n"
0 commit comments