Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

GTK2 Exif Thumbnail Reader

by renegadex (Beadle)
on Aug 31, 2009 at 12:51 UTC ( [id://792359]=CUFP: print w/replies, xml ) Need Help??

This snippet shows how to get the thumbnail from exif metadata. This is very usefull for generating very fast thumbnails!! I hope many would benefit from this.
use Image::ExifTool qw(ImageInfo); my $exifTool = new Image::ExifTool; $exifTool->Options(Binary => 1); my $info = $exifTool->ImageInfo('image_file.jpg', 'thumbnailimage'); my $data = ${$$info{ThumbnailImage}}; my $loader = Gtk2::Gdk::PixbufLoader->new(); $loader->write($data); $loader->close(); $pixbuf = $loader->get_pixbuf();
since you are able to make the thumbnail into a pixbuf then you may now use your favourite widget to preview the thumbnail.

the $exifTool is an Image::ExifTool, so you need this module to make it work. you can yum it using... yum install perl-Image-ExifTool.

*some of the codes i got from other monks*

Replies are listed 'Best First'.
Re: GTK2 Exif Thumbnail Reader
by CircusGimp (Acolyte) on Apr 01, 2014 at 09:41 UTC
    Thanks for sharing
Re: GTK2 Exif Thumbnail Reader
by Anonymous Monk on Sep 02, 2009 at 05:14 UTC
    wow nice code!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://792359]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-20 02:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found