Всем, привет.
Пытаюсь сохранить bitmap в файл используя этот код:
Bitmap bmp1 = Bitmap.createBitmap(result.cols(), result.rows(), Bitmap.Config.ARGB_8888);
File file = new File(context.getFilesDir(), "imageStitched.png");
System.out.println("-------======= "+ context.getFilesDir() +" =======-------");
try {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(file);
bmp1.compress(Bitmap.CompressFormat.JPEG, 100, fos);
} finally {
if (fos != null) fos.close();
}
} catch (Exception e) {
e.printStackTrace();
}
Ошибок никаких нет, и судя по sout файл должен был сохраниться по пути
/data/user/0/com.example.nurshat.imagesstitching/files, но папки
/com.example.nurshat.imagesstitching в директории
/data/user/0 у меня вообще нет.
Помогите пожалуйста разобраться с проблемой.