Lines Matching full:bitmap
18 import android.graphics.Bitmap;
26 * Some Bitmap utility functions.
30 public static Bitmap bitmapFromJpeg(byte[] data) {
37 Bitmap b = BitmapFactory.decodeByteArray(data, 0, data.length, opts);
42 public static Bitmap bitmapFromYuvImage(Image img) {
54 Bitmap b = Bitmap.createBitmap(colors, w, h, Bitmap.Config.ARGB_8888);
60 * Returns parameter bitmap rotated 90 degrees
62 private static Bitmap rotatedBitmap(Bitmap b) {
65 Bitmap b2 = Bitmap.createBitmap(b, 0, 0,b.getWidth(),b.getHeight(), mat, true);