Reputation: 656
HI,
I want to get width and height of the image which i was stored in the drawable folder. Is this possible, if so please let me know ?
Upvotes: 23
Views: 38186
Reputation: 38439
I have follow this link :-
Drawable d = getResources().getDrawable(R.drawable.yourimage);
int h = d.getIntrinsicHeight();
int w = d.getIntrinsicWidth();
Upvotes: 15
Reputation: 3159
try
BitmapDrawable bd=(BitmapDrawable) this.getResources().getDrawable(R.drawable.icon);
int height=bd.getBitmap().getHeight();
int width=bd.getBitmap().getWidth();
Upvotes: 62