Reducing image size

后端 未结 3 692
野性不改
野性不改 2021-01-28 06:30

I am trying to reduce the size of an image that a user has selected from the Gallery before passing it to another intent.

I am currently using the following code, but i

3条回答
  •  梦谈多话
    2021-01-28 07:16

    The best way is pass the image path through the intent, then degrade the image from there. You do not need to degrade image on current activity and pass the degraded image.

    Follow here in order to degrade your image read here. There Image quality will be reduced with the inSampleSize. Higher the inSampleSize will cause lower the image size.

提交回复
热议问题