Java Code Examples for com.google.zxing.BarcodeFormat#ITF
The following examples show how to use
com.google.zxing.BarcodeFormat#ITF .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ZXingDecoder.java From react-native-barcode with MIT License | 5 votes |
private static BarcodeFormat formatToSymbol(int format) { if (225 == format) { return BarcodeFormat.AZTEC; } else if (38 == format) { return BarcodeFormat.CODABAR; } else if (128 == format) { return BarcodeFormat.CODE_128; } else if (39 == format) { return BarcodeFormat.CODE_39; } else if (93 == format) { return BarcodeFormat.CODE_93; } else if (200 == format) { return BarcodeFormat.DATA_MATRIX; } else if (13 == format) { return BarcodeFormat.EAN_13; } else if (8 == format) { return BarcodeFormat.EAN_8; } else if (25 == format) { return BarcodeFormat.ITF; } else if (94 == format) { return BarcodeFormat.MAXICODE; } else if (57 == format) { return BarcodeFormat.PDF_417; } else if (64 == format) { return BarcodeFormat.QR_CODE; } else if (34 == format) { return BarcodeFormat.RSS_14; } else if (35 == format) { return BarcodeFormat.RSS_EXPANDED; } else if (12 == format) { return BarcodeFormat.UPC_A; } else if (9 == format) { return BarcodeFormat.UPC_E; } else if (15 == format) { return BarcodeFormat.UPC_EAN_EXTENSION; } return null; }
Example 2
Source File: ITFWriter.java From reacteu-app with MIT License | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 3
Source File: ITFWriter.java From MiBandDecompiled with Apache License 2.0 | 5 votes |
public BitMatrix encode(String s, BarcodeFormat barcodeformat, int i, int j, Map map) { if (barcodeformat != BarcodeFormat.ITF) { throw new IllegalArgumentException((new StringBuilder()).append("Can only encode ITF, but got ").append(barcodeformat).toString()); } else { return super.encode(s, barcodeformat, i, j, map); } }
Example 4
Source File: ITFWriter.java From barcodescanner-lib-aar with MIT License | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 5
Source File: ITFWriter.java From weex with Apache License 2.0 | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 6
Source File: ITFWriter.java From RipplePower with Apache License 2.0 | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType, ?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 7
Source File: ITFWriter.java From ZXing-Orient with Apache License 2.0 | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 8
Source File: ITFWriter.java From QrCodeScanner with GNU General Public License v3.0 | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 9
Source File: ITFWriter.java From Tesseract-OCR-Scanner with Apache License 2.0 | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 10
Source File: GeneralHandler.java From SecScanQR with GNU General Public License v3.0 | 5 votes |
/** * Method is used to convert parsed String to BarcodeFormat to create an image of the qr code * @param stringFormat as String * @return format as BarcodeFormat */ public BarcodeFormat StringToBarcodeFormat(String stringFormat){ BarcodeFormat format; switch(stringFormat){ case "CODBAR": format = BarcodeFormat.CODABAR; break; case "CODE_128": format= BarcodeFormat.CODE_128; break; case "CODE_39": format = BarcodeFormat.CODE_39; break; case "EAN_13": format = BarcodeFormat.EAN_13; break; case "EAN_8": format = BarcodeFormat.EAN_8; break; case "ITF": format = BarcodeFormat.ITF; break; case "PDF_417": format = BarcodeFormat.PDF_417; break; case "UPC_A": format = BarcodeFormat.UPC_A; break; case "QR_CODE": format = BarcodeFormat.QR_CODE; break; case "AZTEC": format = BarcodeFormat.AZTEC; break; default: format = BarcodeFormat.CODABAR; break; } return format; }
Example 11
Source File: GeneralHandler.java From SecScanQR with GNU General Public License v3.0 | 5 votes |
/** * Method is used to convert parsed id to BarcodeFormat to create an image of the qr code * @param id as int * @return format as BarcodeFormat */ public BarcodeFormat idToBarcodeFormat(int id){ BarcodeFormat format; switch(id){ case 1: format = BarcodeFormat.CODABAR; break; case 2: format= BarcodeFormat.CODE_128; break; case 3: format = BarcodeFormat.CODE_39; break; case 4: format = BarcodeFormat.EAN_13; break; case 5: format = BarcodeFormat.EAN_8; break; case 6: format = BarcodeFormat.ITF; break; case 7: format = BarcodeFormat.PDF_417; break; case 8: format = BarcodeFormat.UPC_A; break; case 9: format = BarcodeFormat.QR_CODE; break; case 10: format = BarcodeFormat.AZTEC; break; default: format = BarcodeFormat.CODABAR; break; } return format; }
Example 12
Source File: ITFWriter.java From ScreenCapture with MIT License | 5 votes |
@Override public BitMatrix encode(String contents, BarcodeFormat format, int width, int height, Map<EncodeHintType,?> hints) throws WriterException { if (format != BarcodeFormat.ITF) { throw new IllegalArgumentException("Can only encode ITF, but got " + format); } return super.encode(contents, format, width, height, hints); }
Example 13
Source File: ZXingDecoder.java From react-native-barcode with MIT License | 5 votes |
private static int symbolToFormat(BarcodeFormat symbol) { if (BarcodeFormat.AZTEC == symbol) { return 225; } else if (BarcodeFormat.CODABAR == symbol) { return 38; } else if (BarcodeFormat.CODE_128 == symbol) { return 128; } else if (BarcodeFormat.CODE_39 == symbol) { return 39; } else if (BarcodeFormat.CODE_93 == symbol) { return 93; } else if (BarcodeFormat.DATA_MATRIX == symbol) { return 200; } else if (BarcodeFormat.EAN_13 == symbol) { return 13; } else if (BarcodeFormat.EAN_8 == symbol) { return 8; } else if (BarcodeFormat.ITF == symbol) { return 25; } else if (BarcodeFormat.MAXICODE == symbol) { return 94; } else if (BarcodeFormat.PDF_417 == symbol) { return 57; } else if (BarcodeFormat.QR_CODE == symbol) { return 64; } else if (BarcodeFormat.RSS_14 == symbol) { return 34; } else if (BarcodeFormat.RSS_EXPANDED == symbol) { return 35; } else if (BarcodeFormat.UPC_A == symbol) { return 12; } else if (BarcodeFormat.UPC_E == symbol) { return 9; } else if (BarcodeFormat.UPC_EAN_EXTENSION == symbol) { return 15; } return -1; }
Example 14
Source File: ITFReader.java From RipplePower with Apache License 2.0 | 4 votes |
@Override public Result decodeRow(int rowNumber, BitArray row, Map<DecodeHintType, ?> hints) throws FormatException, NotFoundException { // Find out where the Middle section (payload) starts & ends int[] startRange = decodeStart(row); int[] endRange = decodeEnd(row); StringBuilder result = new StringBuilder(20); decodeMiddle(row, startRange[1], endRange[0], result); String resultString = result.toString(); int[] allowedLengths = null; if (hints != null) { allowedLengths = (int[]) hints.get(DecodeHintType.ALLOWED_LENGTHS); } if (allowedLengths == null) { allowedLengths = DEFAULT_ALLOWED_LENGTHS; } // To avoid false positives with 2D barcodes (and other patterns), make // an assumption that the decoded string must be a 'standard' length if // it's short int length = resultString.length(); boolean lengthOK = false; int maxAllowedLength = 0; for (int allowedLength : allowedLengths) { if (length == allowedLength) { lengthOK = true; break; } if (allowedLength > maxAllowedLength) { maxAllowedLength = allowedLength; } } if (!lengthOK && length > maxAllowedLength) { lengthOK = true; } if (!lengthOK) { throw FormatException.getFormatInstance(); } return new Result(resultString, null, // no natural byte representation // for these barcodes new ResultPoint[] { new ResultPoint(startRange[1], (float) rowNumber), new ResultPoint(endRange[0], (float) rowNumber) }, BarcodeFormat.ITF); }
Example 15
Source File: ITFReader.java From Tesseract-OCR-Scanner with Apache License 2.0 | 4 votes |
@Override public Result decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints) throws FormatException, NotFoundException { // Find out where the Middle section (payload) starts & ends int[] startRange = decodeStart(row); int[] endRange = decodeEnd(row); StringBuilder result = new StringBuilder(20); decodeMiddle(row, startRange[1], endRange[0], result); String resultString = result.toString(); int[] allowedLengths = null; if (hints != null) { allowedLengths = (int[]) hints.get(DecodeHintType.ALLOWED_LENGTHS); } if (allowedLengths == null) { allowedLengths = DEFAULT_ALLOWED_LENGTHS; } // To avoid false positives with 2D barcodes (and other patterns), make // an assumption that the decoded string must be a 'standard' length if it's short int length = resultString.length(); boolean lengthOK = false; int maxAllowedLength = 0; for (int allowedLength : allowedLengths) { if (length == allowedLength) { lengthOK = true; break; } if (allowedLength > maxAllowedLength) { maxAllowedLength = allowedLength; } } if (!lengthOK && length > maxAllowedLength) { lengthOK = true; } if (!lengthOK) { throw FormatException.getFormatInstance(); } return new Result( resultString, null, // no natural byte representation for these barcodes new ResultPoint[] {new ResultPoint(startRange[1], rowNumber), new ResultPoint(endRange[0], rowNumber)}, BarcodeFormat.ITF); }
Example 16
Source File: ITFReader.java From QrCodeScanner with GNU General Public License v3.0 | 4 votes |
@Override public Result decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints) throws FormatException, NotFoundException { // Find out where the Middle section (payload) starts & ends int[] startRange = decodeStart(row); int[] endRange = decodeEnd(row); StringBuilder result = new StringBuilder(20); decodeMiddle(row, startRange[1], endRange[0], result); String resultString = result.toString(); int[] allowedLengths = null; if (hints != null) { allowedLengths = (int[]) hints.get(DecodeHintType.ALLOWED_LENGTHS); } if (allowedLengths == null) { allowedLengths = DEFAULT_ALLOWED_LENGTHS; } // To avoid false positives with 2D barcodes (and other patterns), make // an assumption that the decoded string must be a 'standard' length if it's short int length = resultString.length(); boolean lengthOK = false; int maxAllowedLength = 0; for (int allowedLength : allowedLengths) { if (length == allowedLength) { lengthOK = true; break; } if (allowedLength > maxAllowedLength) { maxAllowedLength = allowedLength; } } if (!lengthOK && length > maxAllowedLength) { lengthOK = true; } if (!lengthOK) { throw FormatException.getFormatInstance(); } return new Result( resultString, null, // no natural byte representation for these barcodes new ResultPoint[] {new ResultPoint(startRange[1], rowNumber), new ResultPoint(endRange[0], rowNumber)}, BarcodeFormat.ITF); }
Example 17
Source File: ITFReader.java From ZXing-Orient with Apache License 2.0 | 4 votes |
@Override public Result decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints) throws FormatException, NotFoundException { // Find out where the Middle section (payload) starts & ends int[] startRange = decodeStart(row); int[] endRange = decodeEnd(row); StringBuilder result = new StringBuilder(20); decodeMiddle(row, startRange[1], endRange[0], result); String resultString = result.toString(); int[] allowedLengths = null; if (hints != null) { allowedLengths = (int[]) hints.get(DecodeHintType.ALLOWED_LENGTHS); } if (allowedLengths == null) { allowedLengths = DEFAULT_ALLOWED_LENGTHS; } // To avoid false positives with 2D barcodes (and other patterns), make // an assumption that the decoded string must be a 'standard' length if it's short int length = resultString.length(); boolean lengthOK = false; int maxAllowedLength = 0; for (int allowedLength : allowedLengths) { if (length == allowedLength) { lengthOK = true; break; } if (allowedLength > maxAllowedLength) { maxAllowedLength = allowedLength; } } if (!lengthOK && length > maxAllowedLength) { lengthOK = true; } if (!lengthOK) { throw FormatException.getFormatInstance(); } return new Result( resultString, null, // no natural byte representation for these barcodes new ResultPoint[] { new ResultPoint(startRange[1], (float) rowNumber), new ResultPoint(endRange[0], (float) rowNumber)}, BarcodeFormat.ITF); }
Example 18
Source File: BarcodeGeneratorServiceImpl.java From axelor-open-suite with GNU Affero General Public License v3.0 | 4 votes |
@Override public InputStream createBarCode( String serialno, BarcodeTypeConfig barcodeTypeConfig, boolean isPadding) throws AxelorException { if (serialno != null && barcodeTypeConfig != null) { BarcodeFormat barcodeFormat = null; switch (barcodeTypeConfig.getName()) { case "AZTEC": barcodeFormat = BarcodeFormat.AZTEC; break; case "CODABAR": barcodeFormat = BarcodeFormat.CODABAR; serialno = checkTypeForCodabar(serialno, barcodeFormat); break; case "CODE_39": barcodeFormat = BarcodeFormat.CODE_39; serialno = checkTypeForCode39(serialno, barcodeFormat); break; case "CODE_128": barcodeFormat = BarcodeFormat.CODE_128; break; case "DATA_MATRIX": barcodeFormat = BarcodeFormat.DATA_MATRIX; break; case "EAN_8": barcodeFormat = BarcodeFormat.EAN_8; serialno = checkTypeForEan8(serialno, barcodeFormat, isPadding); break; case "ITF": barcodeFormat = BarcodeFormat.ITF; serialno = checkTypeForItf(serialno, barcodeFormat, isPadding); break; case "PDF_417": barcodeFormat = BarcodeFormat.PDF_417; serialno = checkTypeForPdf417(serialno, barcodeFormat, isPadding); break; case "QR_CODE": barcodeFormat = BarcodeFormat.QR_CODE; break; case "UPC_A": barcodeFormat = BarcodeFormat.UPC_A; serialno = checkTypeForUpca(serialno, barcodeFormat, isPadding); break; case "EAN_13": barcodeFormat = BarcodeFormat.EAN_13; serialno = checkTypeForEan13(serialno, barcodeFormat, isPadding); break; default: throw new AxelorException( TraceBackRepository.CATEGORY_CONFIGURATION_ERROR, I18n.get(IExceptionMessage.BARCODE_GENERATOR_9)); } return generateBarcode(serialno, barcodeTypeConfig, barcodeFormat); } return null; }
Example 19
Source File: ITFReader.java From weex with Apache License 2.0 | 4 votes |
@Override public Result decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints) throws FormatException, NotFoundException { // Find out where the Middle section (payload) starts & ends int[] startRange = decodeStart(row); int[] endRange = decodeEnd(row); StringBuilder result = new StringBuilder(20); decodeMiddle(row, startRange[1], endRange[0], result); String resultString = result.toString(); int[] allowedLengths = null; if (hints != null) { allowedLengths = (int[]) hints.get(DecodeHintType.ALLOWED_LENGTHS); } if (allowedLengths == null) { allowedLengths = DEFAULT_ALLOWED_LENGTHS; } // To avoid false positives with 2D barcodes (and other patterns), make // an assumption that the decoded string must be a 'standard' length if it's short int length = resultString.length(); boolean lengthOK = false; int maxAllowedLength = 0; for (int allowedLength : allowedLengths) { if (length == allowedLength) { lengthOK = true; break; } if (allowedLength > maxAllowedLength) { maxAllowedLength = allowedLength; } } if (!lengthOK && length > maxAllowedLength) { lengthOK = true; } if (!lengthOK) { throw FormatException.getFormatInstance(); } return new Result( resultString, null, // no natural byte representation for these barcodes new ResultPoint[] { new ResultPoint(startRange[1], (float) rowNumber), new ResultPoint(endRange[0], (float) rowNumber)}, BarcodeFormat.ITF); }
Example 20
Source File: ITFReader.java From ScreenCapture with MIT License | 4 votes |
@Override public Result decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints) throws FormatException, NotFoundException { // Find out where the Middle section (payload) starts & ends int[] startRange = decodeStart(row); int[] endRange = decodeEnd(row); StringBuilder result = new StringBuilder(20); decodeMiddle(row, startRange[1], endRange[0], result); String resultString = result.toString(); int[] allowedLengths = null; if (hints != null) { allowedLengths = (int[]) hints.get(DecodeHintType.ALLOWED_LENGTHS); } if (allowedLengths == null) { allowedLengths = DEFAULT_ALLOWED_LENGTHS; } // To avoid false positives with 2D barcodes (and other patterns), make // an assumption that the decoded string must be a 'standard' length if it's short int length = resultString.length(); boolean lengthOK = false; int maxAllowedLength = 0; for (int allowedLength : allowedLengths) { if (length == allowedLength) { lengthOK = true; break; } if (allowedLength > maxAllowedLength) { maxAllowedLength = allowedLength; } } if (!lengthOK && length > maxAllowedLength) { lengthOK = true; } if (!lengthOK) { throw FormatException.getFormatInstance(); } return new Result( resultString, null, // no natural byte representation for these barcodes new ResultPoint[] {new ResultPoint(startRange[1], rowNumber), new ResultPoint(endRange[0], rowNumber)}, BarcodeFormat.ITF); }