Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EXIF data #3

Open
williamg97 opened this issue Jun 2, 2019 · 4 comments
Open

EXIF data #3

williamg97 opened this issue Jun 2, 2019 · 4 comments
Labels
enhancement New feature or request

Comments

@williamg97
Copy link

Any way to copy the EXIF data across (date taken, GPS location etc)?

@DavidAnson
Copy link
Owner

I’d like to, and I’ve looked into this before. You might expect there is a simple way, but it seemed to me at the time that WIC did not make this easy. Instead, it seemed that the code would need to extract values individually by multiple names/aliases and possibly convert them along the way. I’ve done something similar on a previous project and it was quite messy. If I can find an efficient way to do this here, I will add it.

@DavidAnson DavidAnson added the enhancement New feature or request label Jun 2, 2019
@JohnStefanko
Copy link

Exiftool supports r/w for both heic/heif and jpg.

https://www.sno.phy.queensu.ca/~phil/exiftool/#supported

@JohnDelisle
Copy link

JohnDelisle commented Nov 17, 2020

@JohnStefanko Good find. It's simple enough (though inefficient and kludgy) to add a call to exiftool post-conversion. I'm dealing with this due to iOS storing images as HEIC, and using OneDrive for cloud storage. On my Windows systems, working with HEIC is terrible (e.g. the Windows Photos app refuses to save changes to images, like rotation or crop, even with MS's HEIF/HEIC add-on). I'm using this script and exiftool to find all HEIC files, convert them to jpeg, apply the EXIF metadata, and delete the original. Unfortunately I found the iOS setting to store as jpeg months after many images were taken. What a pain!

@ALittleOfEverything88
Copy link

@JohnStefanko Good find. It's simple enough (though inefficient and kludgy) to add a call to exiftool post-conversion. I'm dealing with this due to iOS storing images as HEIC, and using OneDrive for cloud storage. On my Windows systems, working with HEIC is terrible (e.g. the Windows Photos app refuses to save changes to images, like rotation or crop, even with MS's HEIF/HEIC add-on). I'm using this script and exiftool to find all HEIC files, convert them to jpeg, apply the EXIF metadata, and delete the original. Unfortunately I found the iOS setting to store as jpeg months after many images were taken. What a pain!

I wish I would have know that this issue existed before I modified my workflow. Thankfully, I found the same setting you referred to in the iPhone.

For anyone else reading this, I know the free CopyTrans program will convert AND retain EXIF data. Unfortunately, I haven't found a way to automate that conversion process so back to JPG I go.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

5 participants