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

[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 th