Wednesday, March 7, 2012

Re: [android-developers] hi

  Try this 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(); } 

On Wed, Mar 7, 2012 at 5:27 PM, chowdary nani <naveenneelinfo@gmail.com> wrote:
Hi All,
Is it possible to convert bitmap image to .png image format in android

Thanks
Naveen

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en



--
WITH REGARDS
ARUN KUMAR P D
+91-9663471079

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment