Project

snapa

0.0
No commit activity in last 3 years
No release in over 3 years
Uses phantomjs to render and take a png snapshot of part of a page
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

>= 0
 Project Readme

Snapa

Use this gem to render your page with phantomjs and take a png snapshot of the rendered body / css selector, usefull for generating an IE friendly version of an svg or html5 canvas. A map example is provided by passing :map to the initializer.

Installation

Add this line to your application's Gemfile:

gem 'snapa'

And then execute:

$ bundle

Or install it yourself as:

$ gem install snapa

Usage

To run as a stand alone rack app

config.ru
run Snapa::File.new('public/map.html')

To mount under Rails

config/routes.rb
mount Snapa::File.new('public/map.html') => '/map.png'

The default cache path is /tmp/snapa or public/system/snapa when mounted under a rails app. This can be overridden by passing an optional cache_path param to the initializer.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request