Save Bitmap into File and return File having bitmap image

前端 未结 3 1170
慢半拍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:53

    You can't write like this

     File file = new File(bmp + ".png");
    

    and this line is also wrong

    file = new File(extStorageDirectory, bmp + ".png");
    

    You have to give string value and not bitmap.

     File file = new File(filename + ".png"); 
    

提交回复
热议问题