펌 OK (출처 표시), 상업적 이용 NO, 컨텐츠 변경 NO
비트맵, 파일이 저장될 경로, 저장할 파일명을 넘겨받아서
JPEG 파일로 저장하는 방법이다.
public static void SaveBitmapToFileCache(Bitmap bitmap, String strFilePath, String filename) {
File file = new File(strFilePath);
if (!file.exists())
file.mkdirs();
File fileCacheItem = new File(strFilePath + filename);
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();
}
}
}
'Android > 소스코드' 카테고리의 다른 글
단말기의 소프트키 적용 여부 판단하기 (0) | 2015.01.22 |
---|---|
브라우저 방문기록, 북마크 읽어오기 (3) | 2014.11.28 |
서비스가 실행중인지 알아보는 방법 (0) | 2014.08.04 |
어플 패키지명으로 삭제하는 소스코드 (0) | 2014.04.23 |
현재 설치된 어플명,패키지,버전 검색, 삭제방법 (0) | 2014.04.10 |