All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.graphics.BitmapFactory Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

There is a newer version: 4.1.1.4
Show newest version
package android.graphics;
public class BitmapFactory
{
public static class Options
{
public  Options() { throw new RuntimeException("Stub!"); }
public  void requestCancelDecode() { throw new RuntimeException("Stub!"); }
public boolean inJustDecodeBounds;
public int inSampleSize;
public android.graphics.Bitmap.Config inPreferredConfig;
public boolean inDither;
public int outWidth;
public int outHeight;
public java.lang.String outMimeType;
public byte[] inTempStorage = null;
public boolean mCancel;
}
public  BitmapFactory() { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeFile(java.lang.String pathName, android.graphics.BitmapFactory.Options opts) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeFile(java.lang.String pathName) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeResource(android.content.res.Resources res, int id, android.graphics.BitmapFactory.Options opts) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeResource(android.content.res.Resources res, int id) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeByteArray(byte[] data, int offset, int length, android.graphics.BitmapFactory.Options opts) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeByteArray(byte[] data, int offset, int length) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeStream(java.io.InputStream is, android.graphics.Rect outPadding, android.graphics.BitmapFactory.Options opts) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeStream(java.io.InputStream is) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeFileDescriptor(java.io.FileDescriptor fd, android.graphics.Rect outPadding, android.graphics.BitmapFactory.Options opts) { throw new RuntimeException("Stub!"); }
public static  android.graphics.Bitmap decodeFileDescriptor(java.io.FileDescriptor fd) { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy