I need a software for JPG date taken

Asked By 30 points N/A Posted on -
qa-featured

Hi everyone, 

I am working with JPG files. I am looking a software for JPG date taken. Can anyone know where I can find it? Please send me some links on it. 

Thanks.

SHARE
Best Answer by Ford Smithkings
Answered By 50 points N/A #189787

I need a software for JPG date taken

qa-featured

 

Otherwise there are two possible ways:
  1. Use third-party utility or library, for example ExifTool by Phil Harvey. Call it with your image, parse the output, and you will get info.
  2. Read Exif specification, and parse your jpeg file yourself. More work, but you will stay independend from third-party code.
Best Answer
Best Answer
Answered By 0 points N/A #189788

I need a software for JPG date taken

qa-featured

Hi Raymond Date and time in modern digital photos is stored in metadata in a part of the image called the EXIF. You can follow the following steps to add a time stamp to a jpeg image from the EXIF 1) Download image formatting software Imagemagick from this link 2) Once it is installed, open a command shell from Start the run and then type “cmd” then press enter 3) In the command window switch to the directory where your photo is stored 4) In the command window replace “Youre_test_photo.jpg” with the actual photo you want to test and “output.jpg” with your preferred output name 5) Then type in the following command convert “your_test_photo.jpg”-font “Arial”-point size 72-fill white-annotate+”100”+”100”” %[exif:DateTimeOriginal] output.jpg”

Related Questions