Android Bitmap to File

    [Android Code] Bitmap 파일로 저장하기

    File file = new File(getFilesDir() + "/test"); if (!file.exists()) { try { file.createNewFile(); } catch (IOException e) { e.printStackTrace(); } } Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher); FileOutputStream out = null; try { out = new FileOutputStream(file); bm.compress(CompressFormat.PNG, 100, out); ..