I need an image grabber. By that I mean a Digg like image grabber that can search other pages (including youtube, normal websites, economist,…whatever), get the images that are of decent sizes and if I select it, I can upload it to my server.
Does anyone know of a plugin for this?
Thanks.
I don’t know about any off-the-shelf library. But I once needed a quick way to retrieve the “main image” off a page. My best guess was to just get the largest in file size. I was using the PHP SimpleHTMLDom library for easy access to the site’s
<img>tags.Now, here’s the main part of the code, that returns the URL of the biggest image file for a given page.
Hope you can build on that.