Home | History | Annotate | Download | only in data

Lines Matching defs:BitmapFactory

22 import android.graphics.BitmapFactory;
49 BitmapFactory.Options o = new BitmapFactory.Options();
51 BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
60 return BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
62 // BitmapFactory throws an exception rather than returning null
66 return BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);
82 BitmapFactory.Options o = new BitmapFactory.Options();
84 BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
95 created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length, o);
97 created = BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length);