文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>把bitmap通streamer保存为png格图片

把bitmap通streamer保存为png格图片

时间:2010-09-14  来源:fly123456789

Bitmap类有一compress成员,可以把bitmap保存到一个stream中。
例如:
public void saveMyBitmap(String bitName) throws IOException {
File f = new File("/sdcard/Note/" + bitName + ".png");
f.createNewFile();
FileOutputStream fOut = null;
try {
fOut = new FileOutputStream(f);
} catch (FileNotFoundException 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();
}
}
相关阅读 更多 +
排行榜 更多 +
战斗模拟比赛最新版

战斗模拟比赛最新版

冒险解谜 下载
AdGuard去广告大杀器下载

AdGuard去广告大杀器下载

生活实用 下载
一起看手机版app下载

一起看手机版app下载

趣味娱乐 下载