Home | History | Annotate | Download | only in camera

Lines Matching defs:bitmap

19 import android.graphics.Bitmap;
25 public static Bitmap createVideoThumbnailBitmap(FileDescriptor fd, int targetWidth) {
29 public static Bitmap createVideoThumbnailBitmap(String filePath, int targetWidth) {
33 private static Bitmap createVideoThumbnailBitmap(String filePath, FileDescriptor fd,
35 Bitmap bitmap = null;
43 bitmap = retriever.getFrameAtTime(-1);
55 if (bitmap == null) return null;
57 // Scale down the bitmap if it is bigger than we need.
58 int width = bitmap.getWidth();
59 int height = bitmap.getHeight();
64 bitmap = Bitmap.createScaledBitmap(bitmap, w, h, true);
66 return bitmap;