vote up 1 vote down star
2

I'm trying to programatically create beautiful thumbnail images of a large number of web pages that are hosted on my own ruby/rails-based website.

I want to be able to code a stand-alone bit of ruby that looks something like this:

require 'awesome-screenshot-maker'

items.each do |id|
  url = "http://foo.com/bar/#{id}"
  shooter = AwesomeScreenshotMaker.new(0.2) # thumbnails are 20% of original
  shooter.capture(url, "/images/thumbnail-#{id}.png")
end

I need the awesome-screenshot-maker library (and its dependencies) to be fairly easy to build on Linux, Solaris and Mac OS X. Ideally it will install with a single 'gem install' command.

I've spent the afternoon exploring various options, including Moz snap shooter, webkit2png and rbwebkitgtk. They are all in the right area, but none seem to work on all three platforms.

RMagick looks like a possible option if I'm willing to output PDFs from my rails app (instead of web pages), but that strikes me as hacky. It's also very laborious to get RMagic and imagemagick up and running on Mac OS X.

Does such a library exist that can easily be setup on three platforms?

flag
This question has been asked at least 3 times in the past. Please see the answers to #125951, #686858 and #713938. – Can Berk Güder Apr 7 at 17:06
Those answers all refer to python, php or command line applications. I've already explored those options and am keen to find a solid ruby-based solution. – Lee Apr 7 at 17:09

3 Answers

vote up 3 vote down check

Selenium RC has a Ruby interface and can grab a screenshot using capture_screenshot(filename,kwargs).

You'd then have to shrink it to a thumbnail.

link|flag
vote up 1 vote down

There is a ruby wrapper for PageGlimpse available:

http://code.squidchunks.com/pageglimpse/

Unfortunately, the Terms of Use state that "You must not use or launch any automated system, including without limitation, "offline readers", "spiders," etc. to capture data provided by the Service."

link|flag
vote up 2 vote down

you might want to try this:

http://www.pageglimpse.com/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.