EXIF Tags In Nautilus
After seeing one of the new Windows Vista screenshots showing Explorer listing image titles in the list view, I decided to have a quick hack on this in Nautilus. Hey presto:
ROCK ON. At the moment it only lets you see the image title on JPEG files (from the Image Description EXIF tag), but I'll extend that later. The good thing is that it's nicely behaved, using asynchronous I/O and only reading as much of the file as it needs.
NP: Worldwide Underground, Erykah Badu
</sarcasm>
Cool Stuff!
<pre>
use Image::MetaData::JPEG;
my $usage = "jpeg-title.pl <filename> <title>";
my $filename = shift @ARGV || die $usage;
my $title = shift @ARGV || die $usage;
my $jpeg = new Image::MetaData::JPEG($filename);
die "Error: " . Image::MetaData::JPEG::Error() unless $jpeg;
$jpeg->set_Exif_data({'ImageDescription' => $title}, 'IMAGE_DATA', 'ADD');
$jpeg->save($filename)
</pre>
http://bugzilla.gnome.org/show_bug.cgi?id=304967
But that bug was more "general" maybe.
great work otherwise!
http://bugzilla.gnome.org/show_bug.cgi?id=47806
othervise, that feature is quite useless
Go to windows Explorer, choose
View,
Choose Details
and you can add a whole bunch of extra information.
Unfortunately not many documents have metadata worth showing so it is not generally worth turning on permanently but it can be useful for in a few select folders.
dh-make-perl --build --install --cpan 'Image::MetaData::JPEG'
Thanks, keep up the good work.