Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
551 views
in Technique[技术] by (71.8m points)

xamarin.android - Being double the length and width of the image, why?

I have this code:

BitmapDrawable bd = (BitmapDrawable)this.GetDrawable(Resource.Drawable.add1);
int height = bd.Bitmap.Height;
int width = bd.Bitmap.Width;
Toast.MakeText(this, width.ToString() + "  " + height.ToString(), ToastLength.Long).Show();

The width and height of add1.png is 55*55 pixels, but Toast showes 110 * 110 pixels, why?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This issue is caused by the resolution of the device. The value returned by bitmap.Width will be adjusted according to the different dpi, this dpi may be different for different models. If the device has a higher resolution, higher numbers may be printed here.

To get the original size of the image file, you need to divide the size by the dpi value.

var density = Resources.DisplayMetrics.Density;

BitmapDrawable bd = (BitmapDrawable)this.GetDrawable(Resource.Drawable.test);
var the_original_height = bd.Bitmap.Height / density;
var the_orignial_width = bd.Bitmap.Width / density;

Toast.MakeText(this, the_original_height.ToString() + "*" + the_original_height.ToString(), ToastLength.Long).Show();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...