how to check image size less then 100kb android

前端 未结 4 835
情深已故
情深已故 2021-01-12 07:43

I am trying to get image from gallery and setting up it on ImageView , Hear is okay well i get and set image on ImageView, but now i want to check

4条回答
  •  孤城傲影
    2021-01-12 08:10

    Get file size as

    File img = new File(picturePath);
    int length = img.length();
    

    it will return size in bytes. you can convert byte into kb

提交回复
热议问题