본문 바로가기

android

Bitmap 객체 jpg로 저장하기


File file = new File("filepath");
final FileOutputStream filestream = new FileOutputStream(file);
bitmap.compress(CompressFormat.JPG, 0, filestream);

* 이미지 가져오기
Bitmap bitmap = BitmapFactory.decodeFile("imagepath");

'android' 카테고리의 다른 글

bitmap to jpg  (0) 2011.06.21
email intent 다중파일 전송  (0) 2011.06.21
email intent  (0) 2011.06.21
android email intent  (0) 2011.06.21
android facebook 연동하기(1)  (0) 2011.06.21