Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: reading in raw data into perl's ImageMagick

by zentara (Archbishop)
on Aug 19, 2010 at 12:33 UTC ( [id://856015]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    $output->BlobToImage( $blob );
    $output->Resize(geometry=>'160x120');
    $output->Write('z.jpg');
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    open(FH,"> $0.gif")or die "$!\n";
    print FH $blob;
    close FH;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-19 02:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found