cormanaz has asked for the wisdom of the Perl Monks concerning the following question:
resulted in a successful get and a file written with "wide character" warning, but the file was not renderable.use feature ':5.10'; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $response = $ua->get('https://en.wikipedia.org/wiki/File:ENIAC-chan +ging_a_tube.jpg'); if ($response->is_success) { my $content = $response->decoded_content; open(OUT,">c:/temp/test.jpg") or die "Can't open output: $!"; binmode OUT; print OUT $content; close OUT; } else { say "Fail" }
So then I tried another method that I thought was designed for this very task:
It gave a completion code of 200, no wide char warning, but also an unrenderable file.use LWP::Simple; my $success = getstore('https://en.wikipedia.org/wiki/File:ENIAC-chang +ing_a_tube.jpg','c:\temp\test.jpg'); say $success;
I would prefer to use LWP:UserAgent for this rather then LWP::Simple since I want to get the images in the context of some other web retrieval. What am I doing wrong?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to get/save image with LWP
by hippo (Archbishop) on Jul 07, 2021 at 20:57 UTC | |
by cormanaz (Deacon) on Jul 07, 2021 at 21:31 UTC | |
|
Re: How to get/save image with LWP
by marto (Cardinal) on Jul 07, 2021 at 21:46 UTC | |
|
Re: How to get/save image with LWP
by bliako (Abbot) on Jul 08, 2021 at 09:39 UTC |