40 lines
951 B
Java
40 lines
951 B
Java
package com.google.zxing.pdf417.encoder;
|
|
|
|
import java.lang.reflect.Array;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class BarcodeMatrix {
|
|
private final BarcodeRow[] a;
|
|
private int b;
|
|
private final int c;
|
|
private final int d;
|
|
|
|
BarcodeMatrix(int i, int i2) {
|
|
this.a = new BarcodeRow[i];
|
|
int length = this.a.length;
|
|
for (int i3 = 0; i3 < length; i3++) {
|
|
this.a[i3] = new BarcodeRow(((i2 + 4) * 17) + 1);
|
|
}
|
|
this.d = i2 * 17;
|
|
this.c = i;
|
|
this.b = -1;
|
|
}
|
|
|
|
BarcodeRow a() {
|
|
return this.a[this.b];
|
|
}
|
|
|
|
void b() {
|
|
this.b++;
|
|
}
|
|
|
|
public byte[][] a(int i, int i2) {
|
|
byte[][] bArr = (byte[][]) Array.newInstance((Class<?>) byte.class, this.c * i2, this.d * i);
|
|
int i3 = this.c * i2;
|
|
for (int i4 = 0; i4 < i3; i4++) {
|
|
bArr[(i3 - i4) - 1] = this.a[i4 / i2].a(i);
|
|
}
|
|
return bArr;
|
|
}
|
|
}
|