Save Bitmap into File and return File having bitmap image

前端 未结 3 1168
慢半拍i
慢半拍i 2020-12-05 11:11

I have a problem to save Bitmaps into files. My method is like this:

private File savebitmap(Bitmap bmp) {
    String extStorageDirectory = Environment.getEx         


        
3条回答
  •  遥遥无期
    2020-12-05 11:54

    Change File file = new File(bmp + ".png"); to File file = new File(extStorageDirectory,"bmp.png"); like you did nearly the second time.

提交回复
热议问题