scolife has asked for the wisdom of the Perl Monks concerning the following question:

Hello Monks.

Is there any feature to Save image from Web page for Perl variable? I am trying to add image from Webpage to MySql database.

my $webpage;# exact URI of Image Location my $image = get($webpage); #

Replies are listed 'Best First'.
Re: About getting Image from Web
by Anonymous Monk on Sep 13, 2015 at 05:27 UTC

      To elaborate just a bit–

      getstore($url, $file); # and preferable in some cases– mirror($url, $file);
        Thank you for this.My goal is to store Image from URI to Binary data, and insert into MySql.