Has anyone found out a way to get bulk images?
It takes forever to keep downloading single pictures.
You can see previous page someone have told us the tool or script
I recommend using this tool and excluding all urls containing: avatars.
Code:hxxp://vvvvvv.exisoftware.com/news/download-all-images-from-a-website.html
It basically just scrapes the website for all images (AKA popular pins) and excluding anything with avatars in url will remove all profile pictures.
Alternative, set the minimum image resolution to 51x51 pixels (as avatar thumbnails are 50pixels by 50pixels)
OR
A tip how to download many large images instantly with some Javascript.
Go to Pinterest popular and write this in your browser:
This will show all the images from the current Pinterest page.Code:javascript:function get() { var abc = []; for (var i=0; i < document.images.length; i++) { if(document.images[i].getAttribute("class")=="PinImageImg") {abc[abc.length] = document.images[i].src; } } for(var i=0;i<abc.length; i++) { document.write("<img src=\"" + abc[i].replace("_b.jpg", "_f.jpg")+"\" /><br />"); } } get();
Now just save (Ctrl+S) the page and you will have downloaded all the images in large format.
Hope this helps somebody.
P.S. This didn't work in Firefox, so I used IE.
OR you can find your self..