com.google.zxing.client.j2se.CommandLineEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javase-java6 Show documentation
Show all versions of javase-java6 Show documentation
Java SE-specific extensions to core ZXing library
The newest version!
/*
* Copyright 2011 ZXing authors
*
* 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.
*/
package com.google.zxing.client.j2se;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.common.BitMatrix;
import java.io.File;
import java.util.Locale;
/**
* Command line utility for encoding barcodes.
*
* @author Sean Owen
*/
public final class CommandLineEncoder {
private static final BarcodeFormat DEFAULT_BARCODE_FORMAT = BarcodeFormat.QR_CODE;
private static final String DEFAULT_IMAGE_FORMAT = "PNG";
private static final String DEFAULT_OUTPUT_FILE = "out";
private static final int DEFAULT_WIDTH = 300;
private static final int DEFAULT_HEIGHT = 300;
private CommandLineEncoder() {
}
public static void main(String[] args) throws Exception {
if (args.length == 0) {
printUsage();
return;
}
BarcodeFormat barcodeFormat = DEFAULT_BARCODE_FORMAT;
String imageFormat = DEFAULT_IMAGE_FORMAT;
String outFileString = DEFAULT_OUTPUT_FILE;
int width = DEFAULT_WIDTH;
int height = DEFAULT_HEIGHT;
String contents = null;
for (String arg : args) {
String[] argValue = arg.split("=");
String av = argValue[0];
if ("--barcode_format".equals(av)) {
barcodeFormat = BarcodeFormat.valueOf(argValue[1]);
} else if ("--image_format".equals(av)) {
imageFormat = argValue[1];
} else if ("--output".equals(av)) {
outFileString = argValue[1];
} else if ("--width".equals(av)) {
width = Integer.parseInt(argValue[1]);
} else if ("--height".equals(av)) {
height = Integer.parseInt(argValue[1]);
} else {
if (arg.startsWith("-")) {
System.err.println("Unknown command line option " + arg);
printUsage();
return;
}
contents = arg;
}
}
if (contents == null) {
printUsage();
return;
}
if (DEFAULT_OUTPUT_FILE.equals(outFileString)) {
outFileString += '.' + imageFormat.toLowerCase(Locale.ENGLISH);
}
BitMatrix matrix = new MultiFormatWriter().encode(contents, barcodeFormat, width, height);
MatrixToImageWriter.writeToPath(matrix, imageFormat, new File(outFileString));
}
private static void printUsage() {
System.err.println("Encodes barcode images using the ZXing library\n");
System.err.println("usage: CommandLineEncoder [ options ] content_to_encode");
System.err.println(" --barcode_format=format: Format to encode, from BarcodeFormat class. " +
"Not all formats are supported. Defaults to QR_CODE.");
System.err.println(" --image_format=format: image output format, such as PNG, JPG, GIF. Defaults to PNG");
System.err.println(" --output=filename: File to write to. Defaults to out.png");
System.err.println(" --width=pixels: Image width. Defaults to 300");
System.err.println(" --height=pixels: Image height. Defaults to 300");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy