保存BitmapDrawable或位图

时间:2010-11-28 08:09:11

标签: android bitmap bitmapdata

好的,所以我有一个代码,它拍摄当前视图的图像,并将其转换为位图,然后我就到了这里,

Bitmap bm = view.getDrawingCache();
BitmapDrawable bitmapDrawable = new BitmapDrawable(bm);

现在,我正在尝试做的是拍摄当前视图的样子,但是从这里开始,我可以轻松地将bitmapDrawable放入ImageView,但这不是我想要的,我我想离开这里,拯救它。我能做什么?我找到了一种方法,使用

FileOutputStream fos;
  try {
   fos = super.openFileOutput("output.png",MODE_WORLD_READABLE);
   bm.compress(CompressFormat.PNG, 75, fos);

      fos.flush();
      fos.close();
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();

}
但是当我这样做时,我最终会在

处出现NullPointerException
bm.compress(CompressFormat.PNG, 75, fos);
我错过了什么吗?

好的,现在它通过上面的代码,然后让它通过fos.close();完成,但没有任何反应,它没有保存,不在我的手机上,什么都没有

1 个答案:

答案 0 :(得分:0)

该行唯一可以为null(并导致NullPointerException)的是bm,这意味着Bitmap bm = view.getDrawingCache();无法按预期工作。你可以发布堆栈跟踪吗?