Tagged Questions
0
votes
1answer
32 views
How do I use Python's PIL library to get EXIF data from a photo starting with a hyperlink to the photo?
import requests
from PIL import Image
from PIL.ExifTags import TAGS
def get_exif(fn):
ret = {}
i = Image.open(fn)
info = i._getexif()
for tag, value in info.items():
decoded ...
1
vote
0answers
38 views
Writing EXIF data using python3 in Windows
I have a set (hundreds) of JPEG files that I need to equip (WRITE access) with EXIF data. For that I would like to use python3 so I can batch process the files and incorporate it in my data flow.
I ...
0
votes
2answers
59 views
Find if an image has EXIF or not
Is it possible to determine whether an image contains exif data or not?
I tried using pyexiv2 as follows:
import pyexiv2 as pex
pex.metadata("test.jpg")
metadata.read()
print metadata.exif_keys
Now ...
0
votes
0answers
59 views
EXIF Tag error reports and geocoding
I'm using EXIF.process_file from https://github.com/ianare/exif-py (based on the discussion in Exif manipulation library for python) to interrogate about 400GB of JPG files (~45,000 files). At this ...
1
vote
1answer
251 views
Exif reading library
Is there an exif library out there for Python 3.x? It seems every exif library I run into is for Python 2.x only. I don't need anything too fancy. Just reading the values is enough.
0
votes
1answer
331 views
Rotating an image with orientation specified in EXIF using Python without PIL including the thumbnail
I have the following scenario:
I am sending an image from iPhone along with the EXIF information to my Pyhon socket server.
I need the image to be properly oriented based on the actual orientation ...
2
votes
2answers
230 views
Get EXIF data without downloading whole image - Python
Is is possible to get the EXIF information of an image remotely and with only downloading the EXIF data?
From what I can understand about EXIF bytes in image files, the EXIF data is in the first few ...
1
vote
2answers
201 views
PyQt4 QPixmap Rotating Jpg according to EXIF
Consider simple PyQt4 app, loading picture with QPixmap and scaling with ratio.
Crucial part of code:
from PyQt4 import QtGui, QtCore
(...)
pixmap = QtGui.QPixmap("example.jpg")
pixmap = ...
5
votes
2answers
138 views
Python: extract Cyrillic string from EXIF
I am a complete beginner in Python, and would like to start learning it by doing. Namely, I'd love to correct some EXIF information in a huge bunch of family photos I have. To start with, I want to ...
0
votes
2answers
271 views
Grab description/keywords from a Tiff image?
I have a number of TIFF files which contain descriptions and "keywords" (as OS X terms them in the file inspector). I'm having difficulty collecting this metadata from the images, however.
I've tried ...
4
votes
2answers
233 views
Image exif data in google app engine
In google app engine dev environment I cannot get exif data. I followed guide from here
https://developers.google.com/appengine/docs/python/images/imageclass
I have done following in the code
def ...
0
votes
1answer
935 views
With python, How to read the “date created” of a file?
I am writing a short script in python that will scan through a list of folders for image files and then re-organize them.
One of the optional way of organizing them i wish to have is by the date they ...
11
votes
3answers
651 views
Compute hash of only the core image data (excluding metadata) for an image
I'm writing a script to calculate the MD5 sum of an image excluding the EXIF tag.
In order to do this accurately, I need to know where the EXIF tag is located in the file (beginning, middle, end) so ...
1
vote
0answers
290 views
EXIF metadata removal in python
I am using Django-media-tree to import images into a site image library. I am hitting a bug in PIL where some unknown EXIF data on the image is causing a non-handled exception in the generation of ...
0
votes
2answers
455 views
Convert GPS coordinates from rational fractions to degrees
I'm trying to make sense of the GPS coordinates returned from the EXIF tags in my images:
my accessor for the coordinates
@property
def GPSCoordinatesRat(self):
coords = (str(self._EXIF_GPSLatitude) ...
2
votes
1answer
768 views
How can the EXIF orientation tag be changed (preferably using PythonMagick)?
I'm scaling and rotating some JPEGs using PythonMagick. Ideally, I could update the EXIF Orientation tag as well. However, while I can retrieve the value of this tag, I can't seem to modify it. ...
0
votes
1answer
116 views
How to programatically extract XMP Tags added by WLPG?
I tried both exif.py (in Pyhton) and ExifTool (just for debugging on command-line).
No matter what I do, I'm unable to extract image Tags or Rating added to a JPEG by Windows Live Photo Gallery.
I ...
1
vote
1answer
138 views
Where in an image is the exif tag located?
In Python, how can I find out where in an image file the EXIF tag is located? I'm assuming it's in the beginning of the file, but I have some proprietary image formats and want to make sure this is ...
0
votes
2answers
208 views
Getting exif data from an image online with python
Hi Is there a way to read exif data from a online image given its url without downloading the image? Right now I'm doing something like:
import urllib, pyexiv2
urllib.urlretrieve(url, File)
exif_info ...
2
votes
2answers
763 views
Translate Exif DMS to DD Geolocation with Python
I am using the following code to extract the geolocation of an image taken with an iPhone:
from PIL import Image
from PIL.ExifTags import TAGS
def get_exif(fn):
ret = {}
i = Image.open(fn)
...
2
votes
2answers
740 views
EXIF like thing for Videos
Is there any standard way to get information from a video file? For images we have EXIF data which can be used to get information about the date/time , size etc of the image file. I was wondering if ...
2
votes
1answer
721 views
How can I restore EXIF data after resizing an image with PIL?
This question has been asked before, but it was answered a few years ago and the answer is refers to a broken link and is probably no longer the best method.
pyxiv2 looks like it would do the task, ...
2
votes
4answers
255 views
python time problem
I am using the exif.py library. After calling
tags=exif.process_file(...)
i want to retrieve the time the image was captured. so i continue with
t =tags['Image DateTime'] if tags.has_key('Image ...
2
votes
2answers
314 views
How do i read EXIF data from an image without the use of external scripts in python?
How do i read EXIF data from an image without the use of external scripts in python? I don't want to use any prewritten scripts.
Thanks!
3
votes
9answers
2k views
How to get the EXIF or meta-data from images?
I need a really good library or a command-line software that can be used to extract Exif data from images. No specific programming language, except the library or the software has to work really well. ...
12
votes
3answers
4k views
How to use PIL to resize and apply rotation EXIF information to the file?
I am trying to use Python to resize picture.
With my camera, files are all written is landscape way.
The exif information handle a tag to ask the image viewer to rotate in a way or another.
Since ...
66
votes
12answers
33k views
Exif manipulation library for python
I'm looking for good exif (Exchangeable image file format) manipulation library for python. I prefer flexibility (e.g., ability to retrieve providers' proprietary tags) than processing speed. What ...
2
votes
3answers
2k views
What is the best way to geotag jpeg-images with python?
I have coordinates from some source and want to tag my jpg files with them. What is the best python library for writing geotags into exif data?
17
votes
5answers
6k views
Resize image in Python without losing EXIF data
I need to resize jpg images with Python without losing the original image's EXIF data (metadata about date taken, camera model etc.). All google searches about python and images point to the PIL ...
