forked from zxing-cpp/zxing-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_image.cpp
210 lines (189 loc) · 5.68 KB
/
generate_image.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*
* 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 "BarcodeFormat.h"
#include "MultiFormatWriter.h"
#include "BitMatrix.h"
#include "ByteMatrix.h"
#include "TextUtfEncoding.h"
#include "ZXStrConvWorkaround.h"
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cctype>
#include <cstdlib>
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "stb_image_write.h"
using namespace ZXing;
static void PrintUsage(const char* exePath)
{
std::cout << "Usage: " << exePath << " [-size <width>x<height>] [-margin <margin>] [-encoding <encoding>] [-ecc <level>] <format> <text> <output>\n"
<< " -size Size of generated image\n"
<< " -margin Margin around barcode\n"
<< " -encoding Encoding used to encode input text\n"
<< " -ecc Error correction level, [0-8]\n"
<< "\n"
<< "Supported formats are:\n"
<< " AZTEC\n"
<< " CODABAR\n"
<< " CODE_39\n"
<< " CODE_93\n"
<< " CODE_128\n"
<< " DATA_MATRIX\n"
<< " EAN_8\n"
<< " EAN_13\n"
<< " ITF\n"
<< " PDF_417\n"
<< " QR_CODE\n"
<< " UPC_A\n"
<< " UPC_E\n"
<< "Formats can be lowercase letters, with or without underscore.\n";
}
static std::string FormatClean(std::string str)
{
std::transform(str.begin(), str.end(), str.begin(), [](char c) { return (char)std::tolower(c); });
str.erase(std::remove(str.begin(), str.end(), '_'), str.end());
return str;
}
static std::string ParseFormat(std::string str)
{
str = FormatClean(str);
for (int i = 0; i < (int)BarcodeFormat::FORMAT_COUNT; ++i) {
auto standardForm = ToString((BarcodeFormat)i);
if (str == FormatClean(standardForm))
return standardForm;
}
return std::string();
}
static bool ParseSize(std::string str, int* width, int* height)
{
std::transform(str.begin(), str.end(), str.begin(), [](char c) { return (char)std::tolower(c); });
auto xPos = str.find('x');
if (xPos != std::string::npos) {
*width = std::stoi(str.substr(0, xPos));
*height = std::stoi(str.substr(xPos + 1));
return true;
}
return false;
}
static bool ParseOptions(int argc, char* argv[], int* width, int* height, int* margin, int* eccLevel, std::string* format, std::string* text, std::string* filePath)
{
int nonOptArgCount = 0;
for (int i = 1; i < argc; ++i) {
if (strcmp(argv[i], "-size") == 0) {
if (i + 1 < argc) {
++i;
if (!ParseSize(argv[i], width, height)) {
std::cerr << "Invalid size specification: " << argv[i] << std::endl;
return false;
}
}
else {
return false;
}
}
else if (strcmp(argv[i], "-margin") == 0) {
if (i + 1 < argc) {
++i;
*margin = std::stoi(argv[i]);
}
else {
return false;
}
}
else if (strcmp(argv[i], "-ecc") == 0) {
if (i + 1 < argc) {
++i;
*eccLevel = std::stoi(argv[i]);
}
else {
return false;
}
}
else if (nonOptArgCount == 0) {
*format = ParseFormat(argv[i]);
if (format->empty()) {
std::cerr << "Unreconigned format: " << argv[i] << std::endl;
return false;
}
++nonOptArgCount;
}
else if (nonOptArgCount == 1) {
*text = argv[i];
++nonOptArgCount;
}
else if (nonOptArgCount == 2) {
*filePath = argv[i];
++nonOptArgCount;
}
else {
return false;
}
}
return !format->empty() && !text->empty() && !filePath->empty();
}
static std::string GetExtension(const std::string& path)
{
auto fileNameStart = path.find_last_of("/\\");
auto fileName = fileNameStart == std::string::npos ? path : path.substr(fileNameStart + 1);
auto extStart = fileName.find_last_of('.');
auto ext = extStart == std::string::npos ? "" : fileName.substr(extStart + 1);
std::transform(ext.begin(), ext.end(), ext.begin(), [](unsigned char c) { return std::tolower(c); });
return ext;
}
int main(int argc, char* argv[])
{
if (argc <= 2) {
PrintUsage(argv[0]);
return 0;
}
int width = 100, height = 100;
int margin = 10;
int eccLevel = -1;
std::string format, text, filePath;
if (!ParseOptions(argc, argv, &width, &height, &margin, &eccLevel, &format, &text, &filePath)) {
PrintUsage(argv[0]);
return -1;
}
try {
auto barcodeFormat = BarcodeFormatFromString(format);
if (barcodeFormat == BarcodeFormat::FORMAT_COUNT)
throw std::invalid_argument("Unsupported format: " + format);
MultiFormatWriter writer(barcodeFormat);
if (margin >= 0)
writer.setMargin(margin);
if (eccLevel >= 0)
writer.setEccLevel(eccLevel);
auto bitmap = writer.encode(TextUtfEncoding::FromUtf8(text), width, height).toByteMatrix();
auto ext = GetExtension(filePath);
int success = 0;
if (ext == "" || ext == "png") {
success = stbi_write_png(filePath.c_str(), bitmap.width(), bitmap.height(), 1, bitmap.data(), 0);
}
else if (ext == "jpg" || ext == "jpeg") {
success = stbi_write_jpg(filePath.c_str(), bitmap.width(), bitmap.height(), 1, bitmap.data(), 0);
}
if (!success) {
std::cerr << "Failed to write image: " << filePath << std::endl;
return -1;
}
}
catch (const std::exception& e) {
std::cerr << e.what() << std::endl;
return -1;
}
return 0;
}