in reply to Question: how to check remote image property
use LWP::Simple qw( get ); my $image = get("http://example.com/images/file.jpg"); defined($image) or die("Unable to fetch image\n"); my $image = GD::Image->new($image);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Question: how to check remote image property
by samtregar (Abbot) on Apr 07, 2008 at 20:40 UTC | |
by Fletch (Bishop) on Apr 07, 2008 at 21:20 UTC |