13 lines
256 B
Java
13 lines
256 B
Java
|
package com.kofax.mobile.sdk.capture;
|
||
|
|
||
|
import android.graphics.Bitmap;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface IImageStorage {
|
||
|
Bitmap getImage(String str);
|
||
|
|
||
|
Bitmap removeImage(String str);
|
||
|
|
||
|
void setImage(Bitmap bitmap, String str);
|
||
|
}
|