How to get width and height of the image?
HI,
I want to ge开发者_C百科t width and height of the image which i was stored in the drawable folder. Is this possible, if so please let me know ?
try
BitmapDrawable bd=(BitmapDrawable) this.getResources().getDrawable(R.drawable.icon);
int height=bd.getBitmap().getHeight();
int width=bd.getBitmap().getWidth();
I have follow this link :-
Drawable d = getResources().getDrawable(R.drawable.yourimage);
int h = d.getIntrinsicHeight();
int w = d.getIntrinsicWidth();
精彩评论