mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
12 lines
383 B
Java
12 lines
383 B
Java
|
package com.google.zxing;
|
||
|
|
||
|
import com.google.zxing.common.BitMatrix;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface Writer {
|
||
|
BitMatrix encode(String str, BarcodeFormat barcodeFormat, int i, int i2) throws WriterException;
|
||
|
|
||
|
BitMatrix encode(String str, BarcodeFormat barcodeFormat, int i, int i2, Map<EncodeHintType, ?> map) throws WriterException;
|
||
|
}
|