Possible Duplicate:
“Bitmap too large to be uploaded into a texture”
I am taking a picture using the camera, then I am saving the picture on the sdcard, then using
Bitmap bm = BitmapFactory.decodeFile(path);
To get the bitmap, then
imageView.setImageBitmap(bm); to set it.
But when I put it into my view using
mFrameLayout.addView(imageView); no image is displayed and I get back Bitmap to large to be uploaded into texture
The bitmap is 1944 high, 2592 wide
Any thoughts?
I am using a tablet, 10.1 inches, acer iconia, a500, running ics.
try with this
this will scale bitmap as per width and height you pass