import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;/**
* This Activty shows how to save an image (Bitmap) to the filesystem, with FileOutputStream object
* @author FaYnaSoft Labs
*
*/
public class Main extends Activity {
private Bitmap bitmap; @Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main); bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.icon);
FileOutputStream fos = null;
try {
fos = openFileOutput("image", Context.MODE_PRIVATE);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
} catch (FileNotFoundException e) {
} finally {
if (fos != null) {
try {
fos.flush();
fos.close();
} catch (IOException e) {
}
}
}
}
}
图片保存到sd卡
原创
©著作权归作者所有:来自51CTO博客作者mb649166f4c151e的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:读取raw 文件夹下的资源
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Phaser将当前运行场景保存为图片
将当前Phaser游戏运行场景保存为图片
搜索引擎 模拟点击 -
从网络获取图片,并缓存到SD卡
效果图:图片存在bmob(http://www.bmob.com)后台,所以下载Demo运行的话
Android网络图片 android图片下载 Android图片缓存 网络图片下载 网络图片缓存到本地 -
android 调用系统相机拍照,并保存到SD卡
Android_照相机Camera_调用系统照相机返回data为空本博文为子墨原创,
android开发 Android java 实例化