/usr/share/pyshared/pyexiv2/exif.py is in python-pyexiv2 0.3.2-5ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 | # -*- coding: utf-8 -*-
# ******************************************************************************
#
# Copyright (C) 2006-2011 Olivier Tilloy <olivier@tilloy.net>
#
# This file is part of the pyexiv2 distribution.
#
# pyexiv2 is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# pyexiv2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with pyexiv2; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
#
# Author: Olivier Tilloy <olivier@tilloy.net>
#
# ******************************************************************************
"""
EXIF specific code.
"""
import libexiv2python
from pyexiv2.utils import is_fraction, make_fraction, fraction_to_string, \
NotifyingList, ListenerInterface, \
undefined_to_string, string_to_undefined, \
DateTimeFormatter
import time
import datetime
import sys
class ExifValueError(ValueError):
"""
Exception raised when failing to parse the *value* of an EXIF tag.
:attribute value: the value that fails to be parsed
:type value: string
:attribute type: the EXIF type of the tag
:type type: string
"""
def __init__(self, value, type):
self.value = value
self.type = type
def __str__(self):
return 'Invalid value for EXIF type [%s]: [%s]' % \
(self.type, self.value)
class ExifTag(ListenerInterface):
"""
An EXIF tag.
Here is a correspondance table between the EXIF types and the possible
python types the value of a tag may take:
- Ascii: :class:`datetime.datetime`, :class:`datetime.date`, string
- Byte, SByte: string
- Comment: string
- Long, SLong: [list of] long
- Short, SShort: [list of] int
- Rational, SRational: [list of] :class:`fractions.Fraction` if available
(Python ≥ 2.6) or :class:`pyexiv2.utils.Rational`
- Undefined: string
"""
# According to the EXIF specification, the only accepted format for an Ascii
# value representing a datetime is '%Y:%m:%d %H:%M:%S', but it seems that
# others formats can be found in the wild.
_datetime_formats = ('%Y:%m:%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S',
'%Y-%m-%dT%H:%M:%SZ')
_date_formats = ('%Y:%m:%d',)
def __init__(self, key, value=None, _tag=None):
"""
The tag can be initialized with an optional value which expected type
depends on the EXIF type of the tag.
:param key: the key of the tag
:type key: string
:param value: the value of the tag
"""
super(ExifTag, self).__init__()
if _tag is not None:
self._tag = _tag
else:
self._tag = libexiv2python._ExifTag(key)
self._raw_value = None
self._value = None
self._value_cookie = False
if value is not None:
self._set_value(value)
def _set_owner(self, metadata):
self._tag._setParentImage(metadata._image)
@staticmethod
def _from_existing_tag(_tag):
# Build a tag from an already existing libexiv2python._ExifTag.
tag = ExifTag(_tag._getKey(), _tag=_tag)
# Do not set the raw_value property, as it would call _tag._setRawValue
# (see https://bugs.launchpad.net/pyexiv2/+bug/582445).
tag._raw_value = _tag._getRawValue()
tag._value_cookie = True
return tag
@property
def key(self):
"""The key of the tag in the dotted form
``familyName.groupName.tagName`` where ``familyName`` = ``exif``."""
return self._tag._getKey()
@property
def type(self):
"""The EXIF type of the tag (one of Ascii, Byte, SByte, Comment, Short,
SShort, Long, SLong, Rational, SRational, Undefined)."""
return self._tag._getType()
@property
def name(self):
"""The name of the tag (this is also the third part of the key)."""
return self._tag._getName()
@property
def label(self):
"""The title (label) of the tag."""
return self._tag._getLabel()
@property
def description(self):
"""The description of the tag."""
return self._tag._getDescription()
@property
def section_name(self):
"""The name of the tag's section."""
return self._tag._getSectionName()
@property
def section_description(self):
"""The description of the tag's section."""
return self._tag._getSectionDescription()
def _get_raw_value(self):
return self._raw_value
def _set_raw_value(self, value):
self._tag._setRawValue(value)
self._raw_value = value
self._value_cookie = True
raw_value = property(fget=_get_raw_value, fset=_set_raw_value,
doc='The raw value of the tag as a string.')
def _compute_value(self):
# Lazy computation of the value from the raw value.
if self.type in \
('Short', 'SShort', 'Long', 'SLong', 'Rational', 'SRational'):
# May contain multiple values
values = self._raw_value.split()
if len(values) > 1:
# Make values a notifying list
values = map(self._convert_to_python, values)
self._value = NotifyingList(values)
self._value.register_listener(self)
self._value_cookie = False
return
self._value = self._convert_to_python(self._raw_value)
self._value_cookie = False
def _get_value(self):
if self._value_cookie:
self._compute_value()
return self._value
def _set_value(self, value):
if isinstance(value, (list, tuple)):
raw_values = map(self._convert_to_string, value)
self.raw_value = ' '.join(raw_values)
else:
self.raw_value = self._convert_to_string(value)
if isinstance(self._value, NotifyingList):
self._value.unregister_listener(self)
if isinstance(value, NotifyingList):
# Already a notifying list
self._value = value
self._value.register_listener(self)
elif isinstance(value, (list, tuple)):
# Make the values a notifying list
self._value = NotifyingList(value)
self._value.register_listener(self)
else:
# Single value
self._value = value
self._value_cookie = False
value = property(fget=_get_value, fset=_set_value,
doc='The value of the tag as a python object.')
@property
def human_value(self):
"""A (read-only) human-readable representation
of the value of the tag."""
return self._tag._getHumanValue() or None
def contents_changed(self):
# Implementation of the ListenerInterface.
# React on changes to the list of values of the tag.
# self._value is a list of values and its contents changed.
self._set_value(self._value)
def _match_encoding(self, charset):
encoding = sys.getdefaultencoding()
if charset == 'Ascii':
encoding = 'ascii'
elif charset == 'Jis':
encoding = 'shift_jis'
elif charset == 'Unicode':
# Starting from 0.20, exiv2 converts unicode comments to UTF-8
from pyexiv2 import __exiv2_version__
if __exiv2_version__ >= '0.20':
encoding = 'utf-8'
else:
byte_order = self._tag._getByteOrder()
if byte_order == 1:
# little endian (II)
encoding = 'utf-16le'
elif byte_order == 2:
# big endian (MM)
encoding = 'utf-16be'
elif charset == 'Undefined':
pass
elif charset == 'InvalidCharsetId':
pass
return encoding
def _convert_to_python(self, value):
"""
Convert one raw value to its corresponding python type.
:param value: the raw value to be converted
:type value: string
:return: the value converted to its corresponding python type
:raise ExifValueError: if the conversion fails
"""
if self.type == 'Ascii':
# The value may contain a Datetime
for format in self._datetime_formats:
try:
t = time.strptime(value, format)
except ValueError:
continue
else:
return datetime.datetime(*t[:6])
# Or a Date (e.g. Exif.GPSInfo.GPSDateStamp)
for format in self._date_formats:
try:
t = time.strptime(value, format)
except ValueError:
continue
else:
return datetime.date(*t[:3])
# Default to string.
# There is currently no charset conversion.
# TODO: guess the encoding and decode accordingly into unicode
# where relevant.
return value
elif self.type in ('Byte', 'SByte'):
return value
elif self.type == 'Comment':
if value.startswith('charset='):
charset, val = value.split(' ', 1)
charset = charset.split('=')[1].strip('"')
encoding = self._match_encoding(charset)
return val.decode(encoding, 'replace')
else:
# No encoding defined.
try:
return value.decode('utf-8')
except UnicodeError:
return value
elif self.type in ('Short', 'SShort'):
try:
return int(value)
except ValueError:
raise ExifValueError(value, self.type)
elif self.type in ('Long', 'SLong'):
try:
return long(value)
except ValueError:
raise ExifValueError(value, self.type)
elif self.type in ('Rational', 'SRational'):
try:
r = make_fraction(value)
except (ValueError, ZeroDivisionError):
raise ExifValueError(value, self.type)
else:
if self.type == 'Rational' and r.numerator < 0:
raise ExifValueError(value, self.type)
return r
elif self.type == 'Undefined':
# There is currently no charset conversion.
# TODO: guess the encoding and decode accordingly into unicode
# where relevant.
return undefined_to_string(value)
raise ExifValueError(value, self.type)
def _convert_to_string(self, value):
"""
Convert one value to its corresponding string representation, suitable
to pass to libexiv2.
:param value: the value to be converted
:return: the value converted to its corresponding string representation
:rtype: string
:raise ExifValueError: if the conversion fails
"""
if self.type == 'Ascii':
if isinstance(value, datetime.datetime):
return DateTimeFormatter.exif(value)
elif isinstance(value, datetime.date):
if self.key == 'Exif.GPSInfo.GPSDateStamp':
# Special case
return DateTimeFormatter.exif(value)
else:
return '%s 00:00:00' % DateTimeFormatter.exif(value)
elif isinstance(value, unicode):
try:
return value.encode('utf-8')
except UnicodeEncodeError:
raise ExifValueError(value, self.type)
elif isinstance(value, str):
return value
else:
raise ExifValueError(value, self.type)
elif self.type in ('Byte', 'SByte'):
if isinstance(value, unicode):
try:
return value.encode('utf-8')
except UnicodeEncodeError:
raise ExifValueError(value, self.type)
elif isinstance(value, str):
return value
else:
raise ExifValueError(value, self.type)
elif self.type == 'Comment':
if value is not None and self.raw_value is not None and \
self.raw_value.startswith('charset='):
charset, val = self.raw_value.split(' ', 1)
charset = charset.split('=')[1].strip('"')
encoding = self._match_encoding(charset)
try:
val = value.encode(encoding)
except UnicodeError:
# Best effort, do not fail just because the original
# encoding of the tag cannot encode the new value.
pass
else:
return 'charset="%s" %s' % (charset, val)
if isinstance(value, unicode):
try:
return value.encode('utf-8')
except UnicodeEncodeError:
raise ExifValueError(value, self.type)
elif isinstance(value, str):
return value
else:
raise ExifValueError(value, self.type)
elif self.type == 'Short':
if isinstance(value, int) and value >= 0:
return str(value)
else:
raise ExifValueError(value, self.type)
elif self.type == 'SShort':
if isinstance(value, int):
return str(value)
else:
raise ExifValueError(value, self.type)
elif self.type == 'Long':
if isinstance(value, (int, long)) and value >= 0:
return str(value)
else:
raise ExifValueError(value, self.type)
elif self.type == 'SLong':
if isinstance(value, (int, long)):
return str(value)
else:
raise ExifValueError(value, self.type)
elif self.type == 'Rational':
if is_fraction(value) and value.numerator >= 0:
return fraction_to_string(value)
else:
raise ExifValueError(value, self.type)
elif self.type == 'SRational':
if is_fraction(value):
return fraction_to_string(value)
else:
raise ExifValueError(value, self.type)
elif self.type == 'Undefined':
if isinstance(value, unicode):
try:
return string_to_undefined(value.encode('utf-8'))
except UnicodeEncodeError:
raise ExifValueError(value, self.type)
elif isinstance(value, str):
return string_to_undefined(value)
else:
raise ExifValueError(value, self.type)
raise ExifValueError(value, self.type)
def __str__(self):
"""
:return: a string representation of the EXIF tag for debugging purposes
:rtype: string
"""
left = '%s [%s]' % (self.key, self.type)
if self._raw_value is None:
right = '(No value)'
elif self.type == 'Undefined' and len(self._raw_value) > 100:
right = '(Binary value suppressed)'
else:
right = self._raw_value
return '<%s = %s>' % (left, right)
# Support for pickling.
def __getstate__(self):
return (self.key, self.raw_value)
def __setstate__(self, state):
key, raw_value = state
self._tag = libexiv2python._ExifTag(key)
self.raw_value = raw_value
class ExifThumbnail(object):
"""
A thumbnail image optionally embedded in the IFD1 segment of the EXIF data.
The image is either a TIFF or a JPEG image.
"""
def __init__(self, _metadata):
self._metadata = _metadata
@property
def mime_type(self):
"""The mime type of the preview image (e.g. ``image/jpeg``)."""
return self._metadata._image._getExifThumbnailMimeType()
@property
def extension(self):
"""The file extension of the preview image with a leading dot
(e.g. ``.jpg``)."""
return self._metadata._image._getExifThumbnailExtension()
def write_to_file(self, path):
"""
Write the thumbnail image to a file on disk.
The file extension will be automatically appended to the path.
:param path: path to write the thumbnail to (without an extension)
:type path: string
"""
self._metadata._image._writeExifThumbnailToFile(path)
def _update_exif_tags_cache(self):
# Update the cache of EXIF tags
keys = self._metadata._image._exifKeys()
self._metadata._keys['exif'] = keys
cached = self._metadata._tags['exif'].keys()
for key in cached:
if key not in keys:
del self._metadata._tags['exif'][key]
def erase(self):
"""
Delete the thumbnail from the EXIF data.
Removes all Exif.Thumbnail.*, i.e. Exif IFD1 tags.
"""
self._metadata._image._eraseExifThumbnail()
self._update_exif_tags_cache()
def set_from_file(self, path):
"""
Set the EXIF thumbnail to the JPEG image path.
This sets only the ``Compression``, ``JPEGInterchangeFormat`` and
``JPEGInterchangeFormatLength`` tags, which is not all the thumbnail
EXIF information mandatory according to the EXIF standard
(but it is enough to work with the thumbnail).
:param path: path to a JPEG file to set the thumbnail to
:type path: string
"""
self._metadata._image._setExifThumbnailFromFile(path)
self._update_exif_tags_cache()
def _get_data(self):
return self._metadata._image._getExifThumbnailData()
def _set_data(self, data):
self._metadata._image._setExifThumbnailFromData(data)
self._update_exif_tags_cache()
data = property(fget=_get_data, fset=_set_data,
doc='The raw thumbnail data. Setting it is restricted to ' +
'a buffer in the JPEG format.')
|