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

Mention ExifTool for reading and writing metadata #337

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion episodes/02-image-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,14 @@ Metadata holds information about the image itself,
such as when the image was captured,
where it was captured,
what type of camera was used and with what settings, etc.
We normally don't see this metadata when we view an image,
Many popular image editing programs have built-in metadata viewing
capabilities. A platform-independent open-source tool that allows
users to read, write, and edit metadata is
[ExifTool](https://exiftool.org/). It can handle a wide range of file
types and metadata formats but requires some technical knowledge to be
used effectively.

We normally don't see the metadata when we view an image using Python and imageio,
but we can view it independently if we wish to
(see [*Accessing Metadata*](#accessing-metadata), below).
The important thing to be aware of at this stage is that
Expand Down