Home | History | Annotate | Download | only in camera

Lines Matching full:bitmap

22 import android.graphics.Bitmap;
50 // Rotates the bitmap by the specified degree.
51 // If a new bitmap is created, the original bitmap is recycled.
52 public static Bitmap rotate(Bitmap b, int degrees) {
58 Bitmap b2 = Bitmap.createBitmap(
65 // We have no memory to rotate. Return the original bitmap.
75 * bitmap.
83 * generates a smaller bitmap, unless minSideLength = IImage.UNCONSTRAINED.
152 public static Bitmap makeBitmap(byte[] jpegData, int maxNumOfPixels) {
167 options.inPreferredConfig = Bitmap.Config.ARGB_8888;