============问题描述============
try {
File file = new File(
Environment
.getExternalStorageDirectory(),
System.currentTimeMillis()
+ ".png");
FileOutputStream stream = new FileOutputStream(
file);
dv.mBitmap.compress(
CompressFormat.PNG, 100,
stream);
stream.close();
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
能成功保存,保存的图片在电脑也能正常查看,但是在android终端上则不行
============解决方案1============
你可以把程序简化一下,利用二分法来排查问题。比如先只保存已有的图片,如果OK就说明是你绘图的问题。
画图文件保存 呈现黑色状态
原文:http://www.cnblogs.com/meizhenfen42/p/4033870.html