Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a function to download an image from a web server, display it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy way to take a bitmap and just save it to the SD card in a folder of my choice?

My issue is that I can download the image, display it on screen as a Bitmap. The only way I have been able to find to save an image to a particular folder is to use FileOutputStream, but that requires a byte array. I am not sure how to convert (if this is even the right way) from Bitmap to byte array, so I can use a FileOutputStream to write the data.

The other option I have is to use MediaStore :

MediaStore.Images.Media.insertImage(getContentResolver(), bm,
    barcodeNumber + ".jpg Card Image", barcodeNumber + ".jpg Card Image");

Which works fine to save to SD card, but does not allow you to customize the folder.

share|improve this question

9 Answers

up vote 230 down vote accepted
try {
       FileOutputStream out = new FileOutputStream(filename);
       bmp.compress(Bitmap.CompressFormat.PNG, 90, out);
} catch (Exception e) {
       e.printStackTrace();
}
share|improve this answer
4  
I have also compressed the image but to 100 percent and when I am getting my image in canvas it is very small. any reason? – AZ_ Mar 18 '11 at 13:24
1  
@Aizaz This will not change the size of the image, only the format and (potentially) quality. It is also worth noting that the compression quality, 90, in the example above will not have any effect when saving as a PNG, but will make a difference for JPEG's. In the case of a JPEG, you can choose any number between 0 and 100. – plowman Mar 22 '11 at 17:59
It should be noted that saving this way for .JPEG with 100% quality will actually save a different image than the original at web (will atleast take much more space), Consider alternative approach. – Warpzit Dec 15 '11 at 13:36
What if the bitmap could be a PNG or a JPEG. Is the input of the bitmap related or does .compress() 1st argument mean your picking the format for the output file? – Blundell Mar 28 '12 at 19:25
3  
Does one have to recompress? I just want to save the original image. – Hein du Plessis Nov 28 '12 at 9:34
show 2 more comments

Here is an example:

String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
File file = new File(path, "FitnessGirl"+Contador+".jpg");
fOut = new FileOutputStream(file);

getImageBitmap(myurl).compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close();

MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());
share|improve this answer
1  
contador? What is that? – Tyler Pfaff Oct 26 '12 at 19:41
1  
Counter. To make FitnessGirl0.jpg, FitnessGirl1.jpg... – JoaquinG Oct 29 '12 at 9:36
   outStream = new FileOutputStream(file);

will throw exception without permission in AndroidManifest.xml (at least in os2.2):

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
share|improve this answer
6  
Not if your file absolutePath is an internal path? – Blundell Mar 28 '12 at 19:23

Some formats, like PNG which is lossless, will ignore the quality setting.

share|improve this answer
PNG is still a compressed format. Does the quality setting not modify the compression quality? – Barta Tamás Nov 16 '12 at 19:26
    Bitmap bbicon;

    bbicon=BitmapFactory.decodeResource(getResources(),R.drawable.bannerd10);
    //ByteArrayOutputStream baosicon = new ByteArrayOutputStream();
    //bbicon.compress(Bitmap.CompressFormat.PNG,0, baosicon);
    //bicon=baosicon.toByteArray();

    String extStorageDirectory = Environment.getExternalStorageDirectory().toString();
    OutputStream outStream = null;
    File file = new File(extStorageDirectory, "er.PNG");
    try {
     outStream = new FileOutputStream(file);
     bbicon.compress(Bitmap.CompressFormat.PNG, 100, outStream);
     outStream.flush();
     outStream.close();
    }
    catch(Exception e)
    {}
share|improve this answer

Why not call the Bitmap.compress method with 100 (which sounds like it is lossless)?

share|improve this answer
Even though it is ignored it should be 100. If someday the compress format is changed to a loosely one then the image will most closely match it being loosely. Also note if you have code that abstracts this call this maybe more important. – ddcruver Jan 20 '11 at 2:20

I would also like to save a picture. But my problem(?) is that I want to save it from a bitmap that ive drawed.

I made it like this:

 @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            switch (item.getItemId()) {
            case R.id.save_sign:      

                myView.save();
                break;

            }
             return false;



    }

public void save() {
            String filename;
                             Date date = new Date(0);
                              SimpleDateFormat sdf = new SimpleDateFormat ("yyyyMMddHHmmss");
                              filename =  sdf.format(date);


try{


                 String path = Environment.getExternalStorageDirectory().toString();
                    OutputStream fOut = null;
                    File file = new File(path, "/DCIM/Signatures/"+filename+".jpg");
                        fOut = new FileOutputStream(file);

                    mBitmap.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
                        fOut.flush();
                        fOut.close();

            MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());
            } catch (Exception e) {
                e.printStackTrace();
                }}
share|improve this answer

Inside onActivityResult

String filename = "pippo.jpg";
File sd = Environment.getExternalStorageDirectory();
File dest = new File(sd, filename);

Bitmap bitmap = (Bitmap)data.getExtras().get("data");
try {
     FileOutputStream out = new FileOutputStream(dest);
     bitmap.compress(Bitmap.CompressFormat.PNG, 90, out);
     out.flush();
     out.close();
} catch (Exception e) {
     e.printStackTrace();
}
share|improve this answer

Hey just give the name to .bmp

Do this:

ByteArrayOutputStream bytes = new ByteArrayOutputStream();
_bitmapScaled.compress(Bitmap.CompressFormat.PNG, 40, bytes);

//you can create a new file name "test.BMP" in sdcard folder.
File f = new File(Environment.getExternalStorageDirectory()
                        + File.separator + "**test.bmp**")

it'll sound that IM JUST FOOLING AROUND but try it once it'll get saved in bmp foramt..Cheers

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.