Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I write exif data from a json-file into a jpg-image?

Tags:

json

exiftool

I've created backups of exif information with

exiftool -j -w json picture.jpg 

How can I now restore the exif information to the image file from the json-file?

Thanks

like image 984
Stefan Avatar asked Mar 19 '14 22:03

Stefan


1 Answers

Ok found it. Might be interesting for others so I post it:

exiftool -json=picture.json picture.jpg

This writes the exif data from picture.json to picture.jpg

like image 93
Stefan Avatar answered Oct 31 '22 22:10

Stefan