android将Bitmap对象保存到SD卡中的方法
本文实例讲述了android将Bitmap对象保存到SD卡中的方法。分享给大家供大家参考。具体如下:
BitmaplogoBitmap=BitmapFactory.decodeResource(mcontext.getResources(),R.drawable.arcnote_logo); ByteArrayOutputStreamlogoStream=newByteArrayOutputStream(); booleanres=logoBitmap.compress(Bitmap.CompressFormat.PNG,100,logoStream); //将图像读取到logoStream中 byte[]logoBuf=logoStream.toByteArray(); //将图像保存到byte[]中 Bitmaptemp=BitmapFactory.decodeByteArray(logoBuf,0,logoBuf.length); //将图像从byte[]中读取生成Bitmap对象temp saveMyBitmap("tttt",temp); //将图像保存到SD卡中 publicvoidsaveMyBitmap(StringbitName,BitmapmBitmap){ Filef=newFile("/sdcard/"+bitName+".png"); try{ f.createNewFile(); }catch(IOExceptione){ //TODOAuto-generatedcatchblock } FileOutputStreamfOut=null; try{ fOut=newFileOutputStream(f); }catch(Exceptione){ e.printStackTrace(); } mBitmap.compress(Bitmap.CompressFormat.PNG,100,fOut); try{ fOut.flush(); }catch(IOExceptione){ e.printStackTrace(); } try{ fOut.close(); }catch(IOExceptione){ e.printStackTrace(); } }
希望本文所述对大家的Android程序设计有所帮助。