[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

MiniExiftool 0.3.0 released

Guest

3/29/2007 8:06:00 PM

MiniExiftool version 0.3.0 released!

http://miniexiftool.ruby...

MiniExiftool is a wrapper library for the Exiftool command-line
application (www.sno.phy.queensu.ca/~phil/exiftool/) written by Phil
Harvay. One of the completest tool for reading and writing meta
informations (EXIF, IPTC, XMP) on image files which supports many file
formats including raw formats.


Installation:
gem install mini_exiftool


Tutorial:
http://miniexiftool.ruby...files/Tutorial.html


Changes:
- Documentation completed and a Mini Tutorial added
- Interface changes:
- Test if a value for a tag can be saved is now done in
MiniExiftool#save
=> There is no check at the moment you set a value:
the tag occurs in MiniExiftool#changed_values
=> While calling MiniExiftool#save errors can occur (see next point)
- MiniExiftool#save is a transaction: if one or more error occurs the
file is not changed! In such a case the errors can be found in
MiniExiftool#errors
- Parameter opts of MiniExiftool.initialize is now a Hash with two
options:
- :numerical => read metadata as numerical values
- :composite => read also composite tags
- Tests added