While getting all the images references in the current page is helpful, I need to save them to disk. There is no non-interactive way to do this with Win32::IE::Mechanize.
$ie->get($url, ":content_file"=>$file);
The above method does not work for image data. I also get an empty file if I do the following:
open(OUT, ">$file");<br>
print OUT $ie->content;<br>
close(OUT);