首页 > 系统 > Android > 正文

android将Bitmap对象保存到SD卡中的方法

2020-04-11 11:36:34
字体:
来源:转载
供稿:网友

本文实例讲述了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,0,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, 100, fOut); try {  fOut.flush(); } catch (IOException e) {  e.printStackTrace(); } try {  fOut.close(); } catch (IOException e) {  e.printStackTrace(); }}

希望本文所述对大家的Android程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表