Extracting Images From Web Page?

  • Thread starter Thread starter Deleted account W
  • Start date Start date

Deleted account W

Guest
I want to download all the images off a web site. The page looks like the one in the attached picture and runs to over 200 images. Short of clicking on every link and manually copying the file is there another way of doing it automatically?
 

Attachments

  • ScreenShot013.jpg
    ScreenShot013.jpg
    14.4 KB · Views: 112
there's an plugin for firefox that does it... and one for maxthon too i think..can rember name of it...i'm lookin' now for you :dabone
 
Whatton said:
I want to download all the images off a web site. The page looks like the one in the attached picture and runs to over 200 images. Short of clicking on every link and manually copying the file is there another way of doing it automatically?

surely there's an easier way of satisfying your 'needs' :eek: :eek: Kev
 
Wget.

http://www.gnu.org/software/wget/

There's a link to the windows binary.

If all the files live in one directory on the web server then:

wget -r -l1 --no-parent -A.gif,.jpg http://server/dir/

should download all the gif and jpg files from that directory. If you want to get them from the ENTIRE server then change the -l1 to -l inf but be careful with this 'cause if it's a big site it'll go a bit nuts.
 

Similar threads


Back
Top Bottom