I have a image captura.png in Folder
The original size is: 279 x 450 px.
But when I get width Height android returns
56*52.
Bitmap windowBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.captura);
int width = windowBitmap.getHeight();
int height = windowBitmap.getWidth();
only have one image, I need the size in pixels. What can I do?