]> CyberLeo.Net >> Repos - CDN/www.cyberleo.net.git/blob - lib/svg2png.rb
Render SVG to PNG to work aorund Firefox security constraints
[CDN/www.cyberleo.net.git] / lib / svg2png.rb
1 class Svg2Png < Nanoc::Filter
2   identifier :svg2png
3   type :binary
4   def run(filename, params={})
5     raise Exception unless system("inkscape '--export-png=#{output_filename}' '#{filename}'")
6   end
7 end