Bitmap bitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);
Bitmap bitmap = Bitmap.createBitmap(imageView.getWidth(), imageView.getHeight(), Bitmap.Config.ARGB_4444);This example creates a bitmap image that has the same dimensions as an ImageView object and uses the ARGB_4444 color format. The createBitmap method is part of the android.graphics package library in Android.