Skip to content

Instantly share code, notes, and snippets.

@nulltask
Created April 14, 2014 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nulltask/10609163 to your computer and use it in GitHub Desktop.
Save nulltask/10609163 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
gem 'rsvg2'
require 'rubygems'
require 'rsvg2'
[2.0, 1.5, 1.0].each do |ratio|
pixbuf = RSVG.pixbuf_from_file_at_zoom('./example.svg', ratio, ratio)
pixbuf.save("./example@#{ratio}x.png", 'png')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment