forked from zxing-cpp/zxing-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZXingReader.cpp
173 lines (150 loc) · 5.39 KB
/
ZXingReader.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
* Copyright 2016 Nu-book Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "ReadBarcode.h"
#include "TextUtfEncoding.h"
#include "GTIN.h"
#include <algorithm>
#include <cctype>
#include <chrono>
#include <clocale>
#include <cstring>
#include <iostream>
#include <string>
#include <vector>
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
using namespace ZXing;
using namespace TextUtfEncoding;
static void PrintUsage(const char* exePath)
{
std::cout << "Usage: " << exePath << " [-fast] [-norotate] [-format <FORMAT[,...]>] [-ispure] [-1] <png image path>...\n"
<< " -fast Skip some lines/pixels during detection (faster)\n"
<< " -norotate Don't try rotated image during detection (faster)\n"
<< " -format Only detect given format(s) (faster)\n"
<< " -ispure Assume the image contains only a 'pure'/perfect code (faster)\n"
<< " -1 Print only file name, text and status on one line per file\n"
<< " -escape Escape non-graphical characters in angle brackets (ignored for -1 option, which always escapes)\n"
<< "\n"
<< "Supported formats are:\n";
for (auto f : BarcodeFormats::all()) {
std::cout << " " << ToString(f) << "\n";
}
std::cout << "Formats can be lowercase, with or without '-', separated by ',' and/or '|'\n";
}
static bool ParseOptions(int argc, char* argv[], DecodeHints& hints, bool& oneLine, bool& angleEscape, std::vector<std::string>& filePaths)
{
for (int i = 1; i < argc; ++i) {
if (strcmp(argv[i], "-fast") == 0) {
hints.setTryHarder(false);
}
else if (strcmp(argv[i], "-norotate") == 0) {
hints.setTryRotate(false);
}
else if (strcmp(argv[i], "-ispure") == 0) {
hints.setIsPure(true);
hints.setBinarizer(Binarizer::FixedThreshold);
}
else if (strcmp(argv[i], "-format") == 0) {
if (++i == argc)
return false;
try {
hints.setFormats(BarcodeFormatsFromString(argv[i]));
} catch (const std::exception& e) {
std::cerr << e.what() << "\n";
return false;
}
}
else if (strcmp(argv[i], "-1") == 0) {
oneLine = true;
}
else if (strcmp(argv[i], "-escape") == 0) {
angleEscape = true;
}
else {
filePaths.push_back(argv[i]);
}
}
return !filePaths.empty();
}
std::ostream& operator<<(std::ostream& os, const Position& points) {
for (const auto& p : points)
os << p.x << "x" << p.y << " ";
return os;
}
int main(int argc, char* argv[])
{
DecodeHints hints;
std::vector<std::string> filePaths;
bool oneLine = false;
bool angleEscape = false;
int ret = 0;
if (!ParseOptions(argc, argv, hints, oneLine, angleEscape, filePaths)) {
PrintUsage(argv[0]);
return -1;
}
hints.setEanAddOnSymbol(EanAddOnSymbol::Read);
if (oneLine)
angleEscape = true;
if (angleEscape)
std::setlocale(LC_CTYPE, "en_US.UTF-8"); // Needed so `std::iswgraph()` in `ToUtf8(angleEscape)` does not 'swallow' all printable non-ascii utf8 chars
for (const auto& filePath : filePaths) {
int width, height, channels;
std::unique_ptr<stbi_uc, void(*)(void*)> buffer(stbi_load(filePath.c_str(), &width, &height, &channels, 4), stbi_image_free);
if (buffer == nullptr) {
std::cerr << "Failed to read image: " << filePath << "\n";
return -1;
}
const auto& result = ReadBarcode({buffer.get(), width, height, ImageFormat::RGBX}, hints);
ret |= static_cast<int>(result.status());
if (oneLine) {
std::cout << filePath << " " << ToString(result.format());
if (result.isValid())
std::cout << " \"" << ToUtf8(result.text(), angleEscape) << "\"";
else if (result.format() != BarcodeFormat::None)
std::cout << " " << ToString(result.status());
std::cout << "\n";
continue;
}
if (filePaths.size() > 1) {
static bool firstFile = true;
if (!firstFile)
std::cout << "\n";
std::cout << "File: " << filePath << "\n";
firstFile = false;
}
std::cout << "Text: \"" << ToUtf8(result.text(), angleEscape) << "\"\n"
<< "Format: " << ToString(result.format()) << "\n"
<< "Position: " << result.position() << "\n"
<< "Rotation: " << result.orientation() << " deg\n"
<< "Error: " << ToString(result.status()) << "\n";
auto printOptional = [](const char* key, const std::string& v) {
if (!v.empty())
std::cout << key << v << "\n";
};
printOptional("EC Level: ", ToUtf8(result.ecLevel()));
if ((BarcodeFormat::EAN13 | BarcodeFormat::EAN8 | BarcodeFormat::UPCA | BarcodeFormat::UPCE)
.testFlag(result.format())) {
printOptional("Country: ", GTIN::LookupCountryIdentifier(ToUtf8(result.text())));
printOptional("Add-On: ", GTIN::EanAddOn(result));
printOptional("Price: ", GTIN::Price(GTIN::EanAddOn(result)));
printOptional("Issue #: ", GTIN::IssueNr(GTIN::EanAddOn(result)));
}
if (result.isPartOfSequence())
std::cout << "Structured Append: symbol " << result.sequenceIndex() + 1 << " of " << result.sequenceSize()
<< " (parity/id: '" << result.sequenceId() << "')\n";
}
return ret;
}