Help for this page

Select Code to Download


  1. or download this
    $image->Set(magick=>'gif');  #set it to any type that's IM legal
    my $blob = $image->ImageToBlob();
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    open(FH,"> $0.gif")or die "$!\n";
    print FH $blob;
    close FH;