mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
64 lines
1.8 KiB
Java
64 lines
1.8 KiB
Java
|
package com.google.zxing;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public abstract class LuminanceSource {
|
||
|
private final int height;
|
||
|
private final int width;
|
||
|
|
||
|
public final int getHeight() {
|
||
|
return this.height;
|
||
|
}
|
||
|
|
||
|
public abstract byte[] getMatrix();
|
||
|
|
||
|
public abstract byte[] getRow(int i, byte[] bArr);
|
||
|
|
||
|
public final int getWidth() {
|
||
|
return this.width;
|
||
|
}
|
||
|
|
||
|
public boolean isCropSupported() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public boolean isRotateSupported() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: protected */
|
||
|
public LuminanceSource(int i, int i2) {
|
||
|
this.width = i;
|
||
|
this.height = i2;
|
||
|
}
|
||
|
|
||
|
public LuminanceSource crop(int i, int i2, int i3, int i4) {
|
||
|
throw new UnsupportedOperationException("This luminance source does not support cropping.");
|
||
|
}
|
||
|
|
||
|
public LuminanceSource invert() {
|
||
|
return new InvertedLuminanceSource(this);
|
||
|
}
|
||
|
|
||
|
public LuminanceSource rotateCounterClockwise() {
|
||
|
throw new UnsupportedOperationException("This luminance source does not support rotation by 90 degrees.");
|
||
|
}
|
||
|
|
||
|
public LuminanceSource rotateCounterClockwise45() {
|
||
|
throw new UnsupportedOperationException("This luminance source does not support rotation by 45 degrees.");
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
byte[] bArr = new byte[this.width];
|
||
|
StringBuilder sb = new StringBuilder(this.height * (this.width + 1));
|
||
|
for (int i = 0; i < this.height; i++) {
|
||
|
bArr = getRow(i, bArr);
|
||
|
for (int i2 = 0; i2 < this.width; i2++) {
|
||
|
int i3 = bArr[i2] & 255;
|
||
|
sb.append(i3 < 64 ? '#' : i3 < 128 ? '+' : i3 < 192 ? '.' : ' ');
|
||
|
}
|
||
|
sb.append('\n');
|
||
|
}
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|