Hello all,
How can I write an image so that it shows up under 'Pictures'?

I've got a FileOutputStream like this:
--Mypic is a valid bitmap.

try {

                 FileOutputStream stream = super.openFileOutput("picture.png",
MODE_PRIVATE);


             Mypic.compress(CompressFormat.PNG, 100, stream);
             stream.flush();
             stream.close();
     }catch(Exception e) {Log.e("MyLog", e.toString());  }

Any help is appreciated.

Josh Beck
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to