사진을 찍거나 화면을 캡쳐할때 저장 메소드
//첫번째 인자값으로는 비트맵 이미지 두번째 인자값으로는 저장할 경로
private void SaveBitmapToFileCache(Bitmap bitmap, String strFilePath) {
File fileCacheItem = new File(strFilePath);
OutputStream out = null;
try {
fileCacheItem.createNewFile();
out = new FileOutputStream(fileCacheItem);
bitmap.compress(CompressFormat.JPEG, 100, out);
}
catch (Exception e) {
e.printStackTrace();
} finally {
try {
out.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
출처 : http://snowbora.com/418
'안드로이드' 카테고리의 다른 글
[android] Preference 저장, 불러오기 (0) | 2013.01.27 |
---|---|
[android] bitmap 저장, 불러오기, 삭제 (0) | 2013.01.27 |
[android] seekbar 사용 방법 (0) | 2013.01.24 |
[android] Bitmap을 Drawable로 변환 또는 Drawable을 Bitmap으로 변환 (0) | 2013.01.23 |
[android] frame animation(프레임 애니메이션) 이용방법 (0) | 2013.01.23 |