Home | History | Annotate | Download | only in camera

Lines Matching full:bitmap

27 import android.graphics.Bitmap;
62 // Rotates the bitmap by the specified degree.
63 // If a new bitmap is created, the original bitmap is recycled.
64 public static Bitmap rotate(Bitmap b, int degrees) {
70 Bitmap b2 = Bitmap.createBitmap(
77 // We have no memory to rotate. Return the original bitmap.
87 * bitmap.
95 * generates a smaller bitmap, unless minSideLength = IImage.UNCONSTRAINED.
150 public static Bitmap transform(Matrix scaler,
151 Bitmap source,
160 * In this case the bitmap is smaller, at least in one dimension,
165 Bitmap b2 = Bitmap.createBitmap(targetWidth, targetHeight,
166 Bitmap.Config.ARGB_8888);
211 Bitmap b1;
214 b1 = Bitmap.createBitmap(source, 0, 0,
227 Bitmap b2 = Bitmap.createBitmap(
271 * Make a bitmap from a given Uri.
275 public static Bitmap makeBitmap(int minSideLength, int maxNumOfPixels,
293 public static Bitmap makeBitmap(int minSideLength, int maxNumOfPixels,
303 public static Bitmap makeBitmap(int minSideLength, int maxNumOfPixels,
323 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
432 // Returns Options that set the puregeable flag for Bitmap decode.