Android中将Bitmap对象以PNG格式保存在内部存储中的方法

Android中将Bitmap对象以PNG格式保存在内部存储中的方法,第1张

概述在Android中进行图像处理的任务时,有时我们希望将处理后的结果以图像文件的格式保存在内部存储空间中,本文以此为目的,介绍将Bitmap对象的数据以PNG格式保存下来的方法。

在AndroID中进行图像处理的任务时,有时我们希望将处理后的结果以图像文件的格式保存在内部存储空间中,本文以此为目的,介绍将Bitmap对象的数据以PNG格式保存下来的方法。

1、添加权限

由于是对SD card进行 *** 作,必不可少的就是为你的程序添加读写权限,需要添加的内容如下:

<uses-permission androID:name="androID.permission.WRITE_EXTERNAL_STORAGE"></uses-permission><uses-permission androID:name="androID.permission.MOUNT_UNMOUNT_fileSYstemS"></uses-permission>

对这两个权限进行简要解释如下:

"androID.permission.MOUNT_UNMOUNT_fileSYstemS"-->允许挂载和反挂载文件系统可移动存储"androID.permission.WRITE_EXTERNAL_STORAGE"-->模拟器中sdcard中创建文件夹的权限

2、保存图片的相关代码

代码比较简单,在这里存储位置是写的绝对路径,大家可以通过使用Environment获取不同位置路径。

Tips:在使用该函数的时候,记得把文件的扩展名带上。

private voID saveBitmap(Bitmap bitmap,String bitname) throws IOException  {    file file = new file("/sdcard/DCIM/Camera/"+bitname);    if(file.exists()){      file.delete();    }    fileOutputStream out;    try{      out = new fileOutputStream(file);      if(bitmap.compress(Bitmap.CompressFormat.PNG,90,out))      {        out.flush();        out.close();      }    }    catch (fileNotFoundException e)    {      e.printstacktrace();    }    catch (IOException e)    {      e.printstacktrace();    }  }

PS:下面看下androID中Bitmap对象怎么保存为文件

Bitmap类有一compress成员,可以把bitmap保存到一个stream中。

例如:

public voID saveMyBitmap(String bitname) throws IOException {   file f = new file("/sdcard/Note/" + bitname + ".png");   f.createNewfile();   fileOutputStream fOut = null;   try {       fOut = new fileOutputStream(f);   } catch (fileNotFoundException e) {       e.printstacktrace();   }   mBitmap.compress(Bitmap.CompressFormat.PNG,100,fOut);   try {       fOut.flush();   } catch (IOException e) {       e.printstacktrace();   }   try {       fOut.close();   } catch (IOException e) {       e.printstacktrace();   } } 

总结

以上所述是小编给大家介绍的AndroID中将Bitmap对象以PNG格式保存在内部存储中,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!

总结

以上是内存溢出为你收集整理的Android中将Bitmap对象以PNG格式保存在内部存储中的方法全部内容,希望文章能够帮你解决Android中将Bitmap对象以PNG格式保存在内部存储中的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144827.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存