@zxing/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library.
17 lines (16 loc) • 496 B
TypeScript
/**
* @author Guenther Grau
*/
export default class BarcodeMetadata {
private columnCount;
private errorCorrectionLevel;
private rowCountUpperPart;
private rowCountLowerPart;
private rowCount;
constructor(columnCount: int, rowCountUpperPart: int, rowCountLowerPart: int, errorCorrectionLevel: int);
getColumnCount(): int;
getErrorCorrectionLevel(): int;
getRowCount(): int;
getRowCountUpperPart(): int;
getRowCountLowerPart(): int;
}