How to get the exif tags of a Tiff images using Julia

Hello, I have few drone images and want to read the exif tags. I can do that easily with command line exiftool application but haven’t managed to find a package that reads exif from TIF files. The Exifviewer.jl package only reads jpg images.

Can you create an issue for Exifviewer.jl or add a comment to Reading EXIF data from raw files · Issue #29 · JuliaImages/ExifViewer.jl · GitHub ?

Sure thing!

Call command line exiftool from Julia? You can e.g. export tags in CSV or JSON format, which should be not too difficult to parse.

2 Likes

Yeah I can call exiftool from the shell command. Yeah, that’s a good idea, I was kind of lazy here to look it up. Thanks!