保存Bitmap图像
Posted yaolunhui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了保存Bitmap图像相关的知识,希望对你有一定的参考价值。
- /**
- * 保存文件
- * @param bm
- * @param fileName
- * @throws IOException
- */
- public void saveFile(Bitmap bm, String fileName) throws IOException {
- String path = getSDPath() +"/revoeye/";
- File dirFile = new File(path);
- if(!dirFile.exists()){
- dirFile.mkdir();
- }
- File myCaptureFile = new File(path + fileName);
- BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(myCaptureFile));
- bm.compress(Bitmap.CompressFormat.JPEG, 80, bos);
- bos.flush();
- bos.close();
- }
以上是关于保存Bitmap图像的主要内容,如果未能解决你的问题,请参考以下文章