3

I want to copy all the pictures on a site, but I don't know how to do it.
Could you please tell me? Shall I use a tool?

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311

4 Answers4

5

If you use Firefox, you can install the DownThemAll addon to download all the images displayed on a given webpage.

clpo13
  • 556
5

the command

wget --mirror -A jpg,gif,png,bmp,jpeg http://www.the-url.org/

will download jpgs, gifs, pngs, and bmps from a site.

if you are cursed to use windows http://gnuwin32.sourceforge.net/packages/wget.htm

nhutto
  • 283
  • 2
  • 6
2

You can use this on the command-line:

wget --mirror 
Gareth
  • 19,080
Johan
  • 5,515
2

You can use HTTrack.

It copies everything on a site, including pictures, images, Flash, video, .php and .html.

slhck
  • 235,242
Waleed
  • 21