mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
11 lines
383 B
Java
11 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;
|
|
}
|