aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Updated copyright headers.Olivier Tilloy2009-03-145-5/+5
* Removed the unused __main__ from pyexiv2.py (part of it was a patch in the de...Olivier Tilloy2009-03-141-10/+0
* Adapted the dumpThumbnailToFile and setThumbnailFromJpegFile methods to the A...Olivier Tilloy2009-03-141-6/+10
* Adapted the setThumbnailData and deleteThumbnail methods to the API of libexi...Olivier Tilloy2009-03-131-3/+6
* Ported the getThumbnailData method to the API of libexiv2 0.18.Olivier Tilloy2009-03-134-66/+80
* Updated the copyright notice in the source headers.Olivier Tilloy2008-02-093-3/+3
* Updated the copyright notice in the source headers.Olivier Tilloy2008-02-091-1/+1
* Fixed bug #183332 (Cached metadata is not converted to its correct type): the...Olivier Tilloy2008-02-061-6/+8
* EXIF and IPTC tag setters now always return the type of the value even if not...Olivier Tilloy2008-02-062-24/+26
* Implemented the equality comparison operator for class pyexiv2.Rational, will...Olivier Tilloy2008-01-301-0/+13
* Factorized the code that converts a tag value to the matching Python type.Olivier Tilloy2008-01-271-55/+56
* Fixed a bug that prevented from setting an EXIF tag with multiple values.Olivier Tilloy2008-01-271-2/+2
* Added a rational number type (class pyexiv2.Rational) to handle rational valu...Olivier Tilloy2008-01-271-17/+51
* Added method copyMetadataTo(Image) to class Image to copy all EXIF and IPTC m...Olivier Tilloy2008-01-271-3/+26
* Added private flags to avoid caching twice the EXIF/IPTC metadata. Based on a...Olivier Tilloy2008-01-271-4/+10
* Fixed bug #183618 (Exif.GPSInfo.{GPSLongitude,Latitude} are not decoded), rev...Olivier Tilloy2008-01-271-20/+26
* Fixed bug #175070 (Deleting a tag not previously accessed raises a KeyError e...Olivier Tilloy2008-01-201-6/+10
* Fixed bug #173387 (Error reading Exif.Photo.UserComment): the value of tag "E...Olivier Tilloy2008-01-201-4/+8
* *Really* fixed bug #146313 (passing the filename to the Image constructor as ...Olivier Tilloy2008-01-181-1/+3
* Implemented feature request tracked by bug #175069 (Retrieve/set the JPEG com...Olivier Tilloy2008-01-163-0/+46
* pyexiv2 will now install in the 'site-packages' python directory. Fixes bug #...Olivier Tilloy2007-12-261-1/+1
* Implemented feature request tracked by bug #149212 (Add access to tag labels)...Olivier Tilloy2007-10-103-0/+24
* Implemented feature request tracked by bug #147534 (Provide access to interpr...Olivier Tilloy2007-10-041-0/+17
* Fixed bug #146323 (Multi value fields are broken): when a EXIF tag value is n...Olivier Tilloy2007-10-031-2/+5
* Fixed bug #146313 (passing the filename to the Image constructor as unicode f...Olivier Tilloy2007-09-281-1/+1
* Added support for DESTDIR in SConscript for installation. This will ease the ...Olivier Tilloy2007-09-271-10/+19
* Explicitely returning the tag types as C++ strings.Olivier Tilloy2007-09-181-6/+6
* Fixed a bug reported by Damon Lynch: due to interface changes for exceptions ...Olivier Tilloy2007-09-161-1/+7
* When setting a datetime or time tag value, truncate the unused information (m...Olivier Tilloy2007-09-161-0/+16
* Updated documentation.Olivier Tilloy2007-09-101-7/+1
* Updated the docstring documentation of module pyexiv2.Olivier Tilloy2007-08-271-15/+75
* Internally renamed methods getAvailableExifTags() and getAvailableIptcTags() ...Olivier Tilloy2007-03-303-8/+12
* Removed methods isExigTagSet() and isIptcTagSet() as they are now useless tha...Olivier Tilloy2007-03-303-33/+0
* Changed the type of exception raised when trying to get a value corresponding...Olivier Tilloy2007-03-302-6/+7
* Added methods cacheAllExifTags() and cacheAllIptcTags() that read and cache a...Olivier Tilloy2007-03-291-0/+8
* Changed the name of methods getAvailableExifTags() and getAvailableIptcTags()...Olivier Tilloy2007-03-291-2/+2
* Getters and setters for EXIF and IPTC tags are now private (but beware! Pytho...Olivier Tilloy2007-03-293-30/+34
* Internal accessor __setitem__ now handles tuples to be consistent with __geti...Olivier Tilloy2007-03-271-8/+13
* Internal accessor __getitem__ now returns a tuple (immutable) when requesting...Olivier Tilloy2007-03-271-0/+2
* Added a __delitem__(key) method to class Image in order to allow the use of t...Olivier Tilloy2007-03-181-2/+25
* Added a __setitem__(key, value) method to class Image in order to allow the u...Olivier Tilloy2007-03-181-0/+54
* Added a __getitem__(key) method to class Image in order to allow the use of t...Olivier Tilloy2007-03-151-0/+26
* Changed the Python exception type an Exiv2::Error(KEY_NOT_FOUND, ...) is conv...Olivier Tilloy2007-03-151-1/+1
* The python part of the binding now correctly handles the possibility for an I...Olivier Tilloy2007-03-133-10/+34
* Modified method Image::deleteIptcTag(...) to take into account the possibilit...Olivier Tilloy2007-03-132-9/+20
* Modified methods Image::getIptcTag(...) and Image::setIptcTag(...) to take in...Olivier Tilloy2007-03-122-23/+51
* Modified the behaviour of Image::getAvailableIptcTags(): it now returns a lis...Olivier Tilloy2007-03-082-4/+6
* Added a recognized format for string to datetime conversion.Olivier Tilloy2007-03-041-1/+1
* Updated the C++ class' methods comments.Olivier Tilloy2007-01-201-24/+29
* Added two methods to class Image, isExifTagSet() and isIptcTagSet(), to deter...Olivier Tilloy2007-01-203-0/+32