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

Re: Getting pictures with LWP

by damian1301 (Curate)
on Aug 27, 2001 at 21:19 UTC ( [id://108179]=note: print w/replies, xml ) Need Help??


in reply to Getting pictures with LWP

I think you may prefer the easier Image::Grab which has a really easy to use interface and easy commands.

Here is your code written over(in the way I would write it :).

sub get_object{ use Image::Grab qw(grab); my($agent, $url, $referer, $save_path) = @_; my($request, $response, $content); $content = grab("$url"); $save_path ? print("Getting picture: $url...") : print("Getting info from $url\n"); return($content) unless ($save_path); open(OUT, ">$save_path") or die("Couldn\'t open picturefile to sav +e: $!"); binmode(OUT); print(OUT $content); close(OUT); }


$_.=($=+(6<<1));print(chr(my$a=$_));$^H=$_+$_;$_=$^H; print chr($_-39); # Easy but its ok.

Replies are listed 'Best First'.
Re: Re: Getting pictures with LWP
by Amoe (Friar) on Aug 27, 2001 at 23:06 UTC
    I would use this, but being able to specify the "referer" parameter in the requests I make is key in the script this is part of, and Image::Grab doesn't provide that functionality, AFAIK.

Log In?
Username:
Password:

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

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

    No recent polls found