aboutsummaryrefslogtreecommitdiffstats
path: root/src/exiv2wrapper.cpp
Commit message (Expand)AuthorAgeFilesLines
* Don't copy the metadata internally, just keep a pointer to it.Olivier Tilloy2010-05-241-31/+28
* Get, set and delete the image comment.Olivier Tilloy2010-05-211-0/+19
* Attach the image's XmpData to a tag when it is assigned to an image.Olivier Tilloy2010-05-201-41/+36
* Moving around the code that writes IPTC tag values,Olivier Tilloy2010-05-201-53/+43
* Attach the image's IptcData to a tag when it is assigned to an image.Olivier Tilloy2010-05-191-7/+9
* Attach the image's ExifData to a tag when it is assigned to an image.Olivier Tilloy2010-05-191-7/+9
* Do not copy a subset of the IptcData, instead pass around a pointer to it and...Olivier Tilloy2010-05-181-94/+87
* Free the allocated memory when deleting an XmpTag.Olivier Tilloy2010-05-181-1/+11
* Free the allocated memory when deleting an IptcTag.Olivier Tilloy2010-05-171-1/+11
* Free the allocated memory when deleting an ExifTag.Olivier Tilloy2010-05-171-0/+8
* Use the proper delete[] operator to deallocate the memory block pointed by _d...Olivier Tilloy2010-04-161-1/+1
* Do not leak the data passed to ImageMetadata.from_buffer.Olivier Tilloy2010-04-141-6/+16
* getDataBuffer() now releases the GIL to allow other python threads to runOlivier Tilloy2010-03-171-1/+10
* New data_buffer() method to get the image buffer.Olivier Tilloy2010-03-171-0/+45
* Instantiate an image from a data buffer.Olivier Tilloy2010-03-161-2/+22
* Comment to explain the exception handlingOlivier Tilloy2010-03-161-0/+6
* Clean error handling outside of the Py_{BEGIN,END}_ALLOW_THREADS blocks.Olivier Tilloy2010-03-161-9/+37
* No need for a boolean to test for error.Olivier Tilloy2010-03-161-3/+1
* Copy the error instead of instantiating a new one from its code.Olivier Tilloy2010-03-161-4/+4
* Raise an IOError when trying to read an image of an unknown type.Olivier Tilloy2010-02-101-16/+31
* Copy metadata to another image.Olivier Tilloy2010-01-221-0/+13
* Read-only access to the mime type of an image.Olivier Tilloy2010-01-221-0/+6
* Read-only access to the dimensions of an image.Olivier Tilloy2010-01-221-0/+12
* Updated error codes translation to the errors defined in libexiv2 0.19.Olivier Tilloy2010-01-211-24/+206
* Removed a compatibility workaround.Olivier Tilloy2010-01-211-6/+1
* Removed handling of unused custom exceptions.Olivier Tilloy2010-01-211-8/+0
* Removed some unused legacy code.Olivier Tilloy2010-01-211-95/+0
* Fixed adding values to repeatable IPTC tags.Olivier Tilloy2010-01-211-1/+3
* Always provide the EXIF interpreted value if possible.Olivier Tilloy2010-01-171-6/+6
* Preview::writeToFile dumps the preview data to a file.Olivier Tilloy2010-01-081-0/+10
* Preview (thumbnail) extraction.Olivier Tilloy2010-01-081-0/+41
* Updated copyright headers for 2010.Olivier Tilloy2010-01-051-1/+1
|\
| * Updated copyright headers for 2010.Olivier Tilloy2010-01-051-1/+1
* | Fix compilation against libexiv2 0.19.Olivier Tilloy2010-01-041-7/+31
|/
* Replaced all data read checks by a custom macro.Olivier Tilloy2010-01-021-84/+26
* Always check if the metadata has been read beforehand.Olivier Tilloy2010-01-021-119/+115
* Also release the GIL when opening a file,Olivier Tilloy2009-12-241-0/+14
* Release the GIL while reading/writing metadata.Olivier Tilloy2009-12-211-0/+14
* Complete documentation of the ExifTag class.Olivier Tilloy2009-12-181-6/+0
* Write the XMP value back to the image.Olivier Tilloy2009-12-101-2/+42
* Get the correct exiv2 type for XMP tags even when no value is set.Olivier Tilloy2009-12-011-1/+1
* Separate _XmpTag value setters for text, array and lang alt.Olivier Tilloy2009-11-301-2/+30
* Use the (much more reliable) exiv2 type of the XMP tag to get its correct value.Olivier Tilloy2009-11-261-0/+7
* Handle XMP tags for which static property information is not available.Olivier Tilloy2009-11-251-4/+17
* Separate _XmpTag value getters for text, array and lang alt.Olivier Tilloy2009-11-241-4/+30
* Do not store the XMP info for a given tag statically.Olivier Tilloy2009-11-201-1/+1
* Make Image::getXmpTag return an XmpTag.Olivier Tilloy2009-11-201-8/+2
* Added the _XmpTag class in the low-level wrapper.Olivier Tilloy2009-11-201-0/+53
* Make Image::getIptcTag return an IptcTag.Olivier Tilloy2009-11-181-30/+20
* Throw an exception when trying to set multiple values on non repeatable IPTC ...Olivier Tilloy2009-11-181-4/+14