Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // GLORIOUS SAVE IMAGE CODE ANDROID STUDIO
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import android.os.Environment;
- ...
- try {
- FileOutputStream out = new FileOutputStream(Environment.getExternalStorageDirectory().toString() + "/shit.jpg");
- editedImage.compress(Bitmap.CompressFormat.JPEG, 100, out);
- } catch (FileNotFoundException e) {}
Advertisement
Add Comment
Please, Sign In to add comment