Back to project page SIC.
The source code is released under:
MIT License
If you think the Android project SIC listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sun.imageloader.imagedecoder.api; //from w w w . j av a 2 s . com import java.io.File; import java.io.IOException; import java.io.InputStream; import java.net.URISyntaxException; import com.sun.imageloader.core.ImageSettings; import android.graphics.Bitmap; public interface ImageDecoder { public Bitmap decodeImage(File imageFile_, ImageSettings settings_, boolean shouldResizeForIO_) throws IOException, URISyntaxException; public Bitmap decodeImage(InputStream inputStream_, ImageSettings settings_, boolean shouldResizeForIO_) throws IOException, URISyntaxException; }