String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
File file = new File(path, "img_xxx.jpg"); // the File to save to
fOut = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close(); // do not forget to close the stream
อยากจะ Save bitmap จาก View ของโปรแกรม Android studio ให้กลายเป็นไฟล์ภาพครับ จาก Code ด้านบน
ไม่ทราบว่าผมทำผิดตรงไหน คือ Save ได้แล้วแต่มันเป็นไฟล์ภาพที่ไม่ค่อยสมบูรณ์ ประมาณว่าต้องเข้าไปดูใน Folder โดยตรง