Bitmap getWidth returns wrong value

后端 未结 1 1449
时光取名叫无心
时光取名叫无心 2020-11-30 07:02

I have a jpg image in my android application drawable folder which resolution is 1000x600. I load that image to bitmap like this

 Bitmap bitMap = BitmapFacto         


        
相关标签:
1条回答
  • 2020-11-30 07:19

    This is probably because of differing densities. Your resource is probably stored in a medium density folder, but your device is hdpi. Medium density is 160dpi, high density is 240dpi. Thus your bitmap is scaled to 1.5x the size it was originally. See the document on multiple screens for more info.

    If resources are not available in the correct density, the system loads the default resources and scales them up or down as needed to match the current screen's density.

    If you intended this to be for high density put it in drawable-hdpi instead of drawable or drawable-mdpi.

    Update:

    If you want it to ignore density, put it in a drawable-nodpi folder. Also from the same doc:

    The easiest way to avoid pre-scaling is to put the resource in a resource directory with the nodpi configuration qualifier. For example:

    res/drawable-nodpi/icon.png
    

    When the system uses the icon.png bitmap from this folder, it does not scale it based on the current device density.

    0 讨论(0)
提交回复
热议问题