Pick an image and resize to 72x72

后端 未结 3 657
太阳男子
太阳男子 2021-01-24 14:54

I picked an image from gallery and decoded it. Now I just want to resize that bitmap to standard 72x72 size in order to use as an profile photo.

I searched a lot but not

3条回答
  •  花落未央
    2021-01-24 15:35

    Try this-

    Bitmap yourBitmap;
    Bitmap resized = Bitmap.createScaledBitmap(yourBitmap, newWidth, newHeight, true);
    

    Or other way-

    resized = Bitmap.createScaledBitmap(yourBitmap,(int)(yourBitmap.getWidth()*0.8), (int)(yourBitmap.getHeight()*0.8), true);
    

提交回复
热议问题