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

Modifying EXIF displayed? #23

Open
palermog opened this issue Sep 30, 2018 · 5 comments
Open

Modifying EXIF displayed? #23

palermog opened this issue Sep 30, 2018 · 5 comments

Comments

@palermog
Copy link

palermog commented Sep 30, 2018

Thanks so much for making this available!

I'm wondering if you could edit the ReadMe to provide some more information about how to modify the EXIF. It looks, from assets/js/exif.js that there are a number of options?

@palermog palermog changed the title Changes to documentation? Modifying EXIF? Sep 30, 2018
@palermog palermog changed the title Modifying EXIF? Modifying EXIF displayed? Sep 30, 2018
@rampatra
Copy link
Owner

Hey, what kind of modification you need in EXIF data? Isn't the EXIF data supposed to be extracted from the image?

@palermog
Copy link
Author

palermog commented Jan 19, 2019 via email

@learningdotnet17
Copy link

I would like that too. We can add comments to the EXIF that show a title of the image, and/or tell a short story of the way the image was made in a few words.

And thanks for making this!

@sokolj1
Copy link

sokolj1 commented Feb 22, 2019

I'm attempting to add the date and time that a photograph was taken to the EXIF data. I have added the following code so far to the main.js file in the gh-pages branch:

function getExifDataMarkup(img)

 if (info === "date_time") {
                    template += '<i class="fa fa-calendar-alt" aria-hidden="true"></i> ' + exif["date_time"] + '&nbsp;&nbsp;';
                }

function fetchExifData(img)

 if (EXIF.getTag(img, "DateTimeOriginal") !== undefined) {
                exifData.date_time = EXIF.getTag(img, "DateTimeOriginal");
            }

However, the date and time isn't showing up. Is there something else I need to add/modify in order for the date and time to show up in the EXIF data?

Thank you for making this Ram!

@FrasSmith
Copy link

I was thinking of something similar. I have updated the gulp.js to copy the full-res images into a third folder. My idea is then to add a download link to the end of the EXIF data. I did pretty much what @sokolj1 did but still can't see my addition.

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

Successfully merging a pull request may close this issue.

5 participants