Reduce size of Bitmap to some specified pixel in Android

前端 未结 4 2249
北荒
北荒 2020-12-03 02:30

I would like to reduce My Bitmap image size to maximum of 640px. For example I have Bitmap image of size 1200 x 1200 px .. How can I reduce it to 640px.

4条回答
  •  情深已故
    2020-12-03 03:12

    or you can do it like this:

    Bitmap.createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter);
    

    Passing filter = false will result in a blocky, pixellated image.

    Passing filter = true will give you smoother edges.

提交回复
热议问题