Home | History | Annotate | Download | only in camera

Lines Matching refs:Bitmap

27 import android.graphics.Bitmap;
112 // Rotates the bitmap by the specified degree.
113 // If a new bitmap is created, the original bitmap is recycled.
114 public static Bitmap rotate(Bitmap b, int degrees) {
118 // Rotates and/or mirrors the bitmap. If a new bitmap is created, the
119 // original bitmap is recycled.
120 public static Bitmap rotateAndMirror(Bitmap b, int degrees, boolean mirror) {
143 Bitmap b2 = Bitmap.createBitmap(
150 // We have no memory to rotate. Return the original bitmap.
160 * bitmap.
168 * generates a smaller bitmap, unless minSideLength = -1.
218 public static Bitmap makeBitmap(byte[] jpegData, int maxNumOfPixels) {
233 options.inPreferredConfig = Bitmap.Config.ARGB_8888;