Read Exif metadata from tiff and jpeg files.
Project description
ExifReader
Fork of Exif.py from ianare and used under BSD License
Easy to use Python module to extract Exif metadata from tiff and jpeg files.
Originally written by Gene Cash & Thierry Bousch.
Installation
PyPi
The recommend process is into install exifreader from the PyPi package See the pip documentation for more info.
Compatibility
Exifreader is tested and officially supported on the following Python versions:
- 3.5 Support will likely be removed in future releases
- 3.6
- 3.7
- 3.8
Usage
Command line
Some examples:
EXIF.py image1.jpg
EXIF.py image1.jpg image2.tiff
find ~/Pictures -name "*.jpg" -name "*.heic" -name "*.tiff" | xargs EXIF.py
Show command line options
EXIF.py --help
Python Script
import exifreader
# Open image file for reading (binary mode)
f = open(path_name, 'rb')
# Return Exif tags
tags = exifread.process_file(f)
Returned tags will be a dictionary mapping names of Exif tags to their values in the file named by path_name. You can process the tags as you wish. In particular, you can iterate through all the tags with
for tag in tags.keys():
if tag not in ('JPEGThumbnail', 'TIFFThumbnail', 'Filename', 'EXIF MakerNote'):
print "Key: %s, value %s" % (tag, tags[tag])
An if
statement is used to avoid printing out a few of the tags that tend to be long or boring.
The tags dictionary will include keys for all of the usual Exif tags, and will also include keys for Makernotes used by some cameras, for which we have a good specification.
Note that the dictionary keys are the IFD name followed by the tag name. For example:: 'EXIF DateTimeOriginal', 'Image Orientation', 'MakerNote FocusMode'
Tag Descriptions
Tags are divided into these main categories:
Image
: information related to the main image (IFD0 of the Exif data).Thumbnail
: information related to the thumbnail image, if present (IFD1 of the Exif data).EXIF
: Exif information (sub-IFD).GPS
: GPS information (sub-IFD).Interoperability
: Interoperability information (sub-IFD).MakerNote
: Manufacturer specific information. There are no official published references for these tags.
Processing Options
These options can be used both in command line mode and within a script.
Faster Processing
Don't process makernotes tags, don't extract the thumbnail image (if any).
Pass the -q
or --quick
command line arguments, or as
tags = exifread.process_file(f, details=False)
Stop at a Given Tag
To stop processing the file after a specified tag is retrieved.
Pass the -t TAG
or --stop-tag TAG
argument, or as
tags = exifread.process_file(f, stop_tag='TAG')
where TAG
is a valid tag name, ex 'DateTimeOriginal'
.
The two above options are useful to speed up processing of large numbers of files.
Strict Processing
Return an error on invalid tags instead of silently ignoring.
Pass the -s
or --strict
argument, or as::
tags = exifread.process_file(f, strict=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ExifReader-0.1.1.tar.gz
.
File metadata
- Download URL: ExifReader-0.1.1.tar.gz
- Upload date:
- Size: 32.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b496a2f815ace94944a3211042f00019a666826e1f432da89583f2daab41a65 |
|
MD5 | b753d90236600441b7c2c830c4cf777e |
|
BLAKE2b-256 | fecbad2a880188cebfb20504f7d4df1ae7fc54d15b5ade6bb0a824bb03f18009 |
File details
Details for the file ExifReader-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: ExifReader-0.1.1-py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.2.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07ea31f2990818912426da3cc56b2ea4a190bc837c9576586075077b3448a256 |
|
MD5 | b75affa337447300d736227d6c2c1205 |
|
BLAKE2b-256 | 9e1b872bf6499c8af6e7d86ec9822d9f6f18a298a39c46ca62c65110de6ecec2 |