
com.telly.wasp.BitmapLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wasp Show documentation
Show all versions of wasp Show documentation
Bitmap utilities for Android
The newest version!
package com.telly.wasp;
import android.content.Context;
import java.io.File;
/**
* @author cristian
*/
public interface BitmapLoader {
/**
* Loads a bitmap and save it to the specified file
*
* @param context a context used to download/access the bitmap
* @param uri the uri or image identifier
* @param file the file to save the bitmap tol
*/
void load(Context context, String uri, File file);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy