Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Convert Gnome2::Canvas::Pixbuf to Image::Magick Array

by renegadex (Beadle)
on Jul 23, 2008 at 03:16 UTC ( #699490=snippet: print w/replies, xml ) Need Help??
Description: This simple code will convert a Gnome2::Canvas::Pixbuf into a Image::Magick Array. Enjoy Perlmagick Programmers!
#Convert Gnome2::Canvas::Pixbuf To Image::Magick Array
sub convert_gnome2pixbuf_im {
    my $pixbuf_g = shift;
    print $pixbuf_g , "\n";
    #Convert Gnome2::Canvas::Pixbuf To Gtk2::Gdk::Pixbuf
    my $pixbuf = $pixbuf_g->get('pixbuf');
    print $pixbuf , "\n";
    #Convert Gtk2::Gdk::Pixbuf To BLOb
    my $blob = $pixbuf->save_to_buffer('jpeg');
    my $im = Image::Magick->new;
    #Convert BLOb to Image::Magick Array
    $im->BlobToImage($blob);
    return $im
}
Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others taking refuge in the Monastery: (1)
As of 2023-06-05 04:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    How often do you go to conferences?






    Results (22 votes). Check out past polls.

    Notices?