本文实例讲述了android将Bitmap对象保存到SD卡中的方法。分享给大家供大家参考。具体如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
Bitmap logoBitmap = BitmapFactory.decodeResource(mcontext.getResources(), R.drawable.arcnote_logo); ByteArrayOutputStream logoStream = new ByteArrayOutputStream(); boolean res = logoBitmap.compress(Bitmap.CompressFormat.PNG, 100 ,logoStream); //将图像读取到logoStream中 byte [] logoBuf = logoStream.toByteArray(); //将图像保存到byte[]中 Bitmap temp = BitmapFactory.decodeByteArray(logoBuf, 0 ,logoBuf.length); //将图像从byte[]中读取生成Bitmap 对象 temp saveMyBitmap( "tttt" ,temp); //将图像保存到SD卡中 public void saveMyBitmap(String bitName,Bitmap mBitmap){ File f = new File( "/sdcard/" + bitName + ".png" ); try { f.createNewFile(); } catch (IOException e) { // TODO Auto-generated catch block } FileOutputStream fOut = null ; try { fOut = new FileOutputStream(f); } catch (Exception 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程序设计有所帮助。