[android-developers] How to add date and time to captured Image

2012-07-10 Thread android dev
HI all, I am new to android pls help on this issue. I have tried many things but not working , Exifinterface. Thank you all -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] How to add date and time to captured Image

2012-07-10 Thread Justin Anderson
I have tried many things but not working , Exifinterface. Care to elaborate on what you have tried? Also note that ExifInterface is used for setting and retrieving meta-data on an image... It will not be displayed on the visible image. Thanks, Justin Anderson MagouyaWare Developer

[android-developers] How to add date and time on captured image

2012-07-09 Thread android developer
Hi all, I have used this code print date and time on image. but not working pls help on this . ExifInterface exif = new ExifInterface(filename); exif.setAttribute(ExifInterface.TAG_DATETIME, (new Date(System.currentTimeMillis())).toString()); exif.saveAttributes(); -- You received

Re: [android-developers] How to add date and time on captured image

2012-07-09 Thread Justin Anderson
Exif data is meta-data... That means it is data that is stored with the image, but is not displayable. If you want to put the date and time on the image, then you will need to modify the actual image... Try using Google, it is your friend: http://lmgtfy.com/?q=android+put+date+and+time+on+image