本文实例讲述了androID将Bitmap对象保存到SD卡中的方法。分享给大家供大家参考。具体如下:
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,logoBuf.length);//将图像从byte[]中读取生成Bitmap 对象 tempsaveMyBitmap("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,fOut); try { fOut.flush(); } catch (IOException e) { e.printstacktrace(); } try { fOut.close(); } catch (IOException e) { e.printstacktrace(); }}
希望本文所述对大家的AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的android将Bitmap对象保存到SD卡中的方法全部内容,希望文章能够帮你解决android将Bitmap对象保存到SD卡中的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)