/*
|
* Copyright 2009 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.
|
*/
|
var __values = (this && this.__values) || function(o) {
|
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
if (m) return m.call(o);
|
if (o && typeof o.length === "number") return {
|
next: function () {
|
if (o && i >= o.length) o = void 0;
|
return { value: o && o[i++], done: !o };
|
}
|
};
|
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
};
|
// package com.google.zxing.pdf417;
|
// import com.google.zxing.BarcodeFormat;
|
import BarcodeFormat from '../BarcodeFormat';
|
// import com.google.zxing.ChecksumException;
|
import ChecksumException from '../ChecksumException';
|
// import com.google.zxing.FormatException;
|
import FormatException from '../FormatException';
|
// import com.google.zxing.NotFoundException;
|
import NotFoundException from '../NotFoundException';
|
// import com.google.zxing.Result;
|
import Result from '../Result';
|
// import com.google.zxing.common.DecoderResult;
|
// import com.google.zxing.multi.MultipleBarcodeReader;
|
// import com.google.zxing.pdf417.decoder.PDF417ScanningDecoder;
|
// import com.google.zxing.pdf417.detector.Detector;
|
// import com.google.zxing.pdf417.detector.PDF417DetectorResult;
|
import PDF417Common from './PDF417Common';
|
import Integer from '../util/Integer';
|
import ResultMetadataType from '../ResultMetadataType';
|
import Detector from './detector/Detector';
|
import PDF417ScanningDecoder from './decoder/PDF417ScanningDecoder';
|
// import java.util.ArrayList;
|
// import java.util.List;
|
// import java.util.Map;
|
/**
|
* This implementation can detect and decode PDF417 codes in an image.
|
*
|
* @author Guenther Grau
|
*/
|
var PDF417Reader = /** @class */ (function () {
|
function PDF417Reader() {
|
}
|
// private static /*final Result[]*/ EMPTY_RESULT_ARRAY: Result[] = new Result([0]);
|
/**
|
* Locates and decodes a PDF417 code in an image.
|
*
|
* @return a String representing the content encoded by the PDF417 code
|
* @throws NotFoundException if a PDF417 code cannot be found,
|
* @throws FormatException if a PDF417 cannot be decoded
|
* @throws ChecksumException
|
*/
|
// @Override
|
PDF417Reader.prototype.decode = function (image, hints) {
|
if (hints === void 0) { hints = null; }
|
var result = PDF417Reader.decode(image, hints, false);
|
if (result == null || result.length === 0 || result[0] == null) {
|
throw NotFoundException.getNotFoundInstance();
|
}
|
return result[0];
|
};
|
/**
|
*
|
* @param BinaryBitmap
|
* @param image
|
* @throws NotFoundException
|
*/
|
// @Override
|
PDF417Reader.prototype.decodeMultiple = function (image, hints) {
|
if (hints === void 0) { hints = null; }
|
try {
|
return PDF417Reader.decode(image, hints, true);
|
}
|
catch (ignored) {
|
if (ignored instanceof FormatException || ignored instanceof ChecksumException) {
|
throw NotFoundException.getNotFoundInstance();
|
}
|
throw ignored;
|
}
|
};
|
/**
|
*
|
* @param image
|
* @param hints
|
* @param multiple
|
*
|
* @throws NotFoundException
|
* @throws FormatExceptionß
|
* @throws ChecksumException
|
*/
|
PDF417Reader.decode = function (image, hints, multiple) {
|
var e_1, _a;
|
var results = new Array();
|
var detectorResult = Detector.detectMultiple(image, hints, multiple);
|
try {
|
for (var _b = __values(detectorResult.getPoints()), _c = _b.next(); !_c.done; _c = _b.next()) {
|
var points = _c.value;
|
var decoderResult = PDF417ScanningDecoder.decode(detectorResult.getBits(), points[4], points[5], points[6], points[7], PDF417Reader.getMinCodewordWidth(points), PDF417Reader.getMaxCodewordWidth(points));
|
var result = new Result(decoderResult.getText(), decoderResult.getRawBytes(), undefined, points, BarcodeFormat.PDF_417);
|
result.putMetadata(ResultMetadataType.ERROR_CORRECTION_LEVEL, decoderResult.getECLevel());
|
var pdf417ResultMetadata = decoderResult.getOther();
|
if (pdf417ResultMetadata != null) {
|
result.putMetadata(ResultMetadataType.PDF417_EXTRA_METADATA, pdf417ResultMetadata);
|
}
|
results.push(result);
|
}
|
}
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
finally {
|
try {
|
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
}
|
finally { if (e_1) throw e_1.error; }
|
}
|
return results.map(function (x) { return x; });
|
};
|
PDF417Reader.getMaxWidth = function (p1, p2) {
|
if (p1 == null || p2 == null) {
|
return 0;
|
}
|
return Math.trunc(Math.abs(p1.getX() - p2.getX()));
|
};
|
PDF417Reader.getMinWidth = function (p1, p2) {
|
if (p1 == null || p2 == null) {
|
return Integer.MAX_VALUE;
|
}
|
return Math.trunc(Math.abs(p1.getX() - p2.getX()));
|
};
|
PDF417Reader.getMaxCodewordWidth = function (p) {
|
return Math.floor(Math.max(Math.max(PDF417Reader.getMaxWidth(p[0], p[4]), PDF417Reader.getMaxWidth(p[6], p[2]) * PDF417Common.MODULES_IN_CODEWORD /
|
PDF417Common.MODULES_IN_STOP_PATTERN), Math.max(PDF417Reader.getMaxWidth(p[1], p[5]), PDF417Reader.getMaxWidth(p[7], p[3]) * PDF417Common.MODULES_IN_CODEWORD /
|
PDF417Common.MODULES_IN_STOP_PATTERN)));
|
};
|
PDF417Reader.getMinCodewordWidth = function (p) {
|
return Math.floor(Math.min(Math.min(PDF417Reader.getMinWidth(p[0], p[4]), PDF417Reader.getMinWidth(p[6], p[2]) * PDF417Common.MODULES_IN_CODEWORD /
|
PDF417Common.MODULES_IN_STOP_PATTERN), Math.min(PDF417Reader.getMinWidth(p[1], p[5]), PDF417Reader.getMinWidth(p[7], p[3]) * PDF417Common.MODULES_IN_CODEWORD /
|
PDF417Common.MODULES_IN_STOP_PATTERN)));
|
};
|
// @Override
|
PDF417Reader.prototype.reset = function () {
|
// nothing needs to be reset
|
};
|
return PDF417Reader;
|
}());
|
export default PDF417Reader;
|