Image scrapper

Status
Not open for further replies.


First of all thanks for quick reply.
I downloaded Webripper , it is cool application.
But it works like a spider I guess, so you have to have links to images in order to find them?
I know images are there in that folder, but there is no link on website for them.
Is there a tool that can look in forbidden folder using keyword and scrap all images
 
Well, if you want to download all of the pictures to your server, you could do a for loop in PHP.
i.e. for($i=1;$i++;$i<7291) { copy function }
Then look up how to do the copy function on php.net.
 
I have custom scripts for that. Make one to generate the target list of images and add those to a database queue table. Then, have another program go down that list and pull the images. Have a third program resize, generate thumbnails, watermark, etc. Then have a fourth one upload the new images to the new host.

It took me about 4 hours to build my system, and if you can't do it yourself, you should be able to hire someone at elance to do it for not that much money.

Make sure that you have referer spoofing and proxies as well, as some places will not let you grab the images unless you have these things in place.
 
There's a Firefox plugin that does this. It's one of the extensions made for porn (in which images are usually named consecutively). I second wget. Here's a quickie:

#!/bin/sh
BASE="blueshit.com"
i='1'
while [ $i -lt 101 ]
do
echo "Grabbing image_$i"
wget "$BASE/image_$i"
i=$[$i+1]
done

downloads image_1 to image_100
 
Status
Not open for further replies.