sobota, 3 lutego 2018

Read EXIF data from image

From the command line in Linux
#sudo apt-get install imagemagick
Install imagemagic and it`s tool identyfi. Go to terminal and type
identify -verbose /home/user/image/2000-01-01-0001.jpg
will print all data from that file
identify -verbose /home/user/image/2000-01-01-0001.jpg | grep "exif:"
will print all exif data from that file Using exiftool First install exif tools
#sudo apt-get install exiftool
then run in terminal
exiftool -a /home/user/image/2000-01-01-0001.jpg | grep "Image Width"
or man exiftool


More usefull exiftool

Brak komentarzy:

Prześlij komentarz

thanks