Removing print statement

dev
Andy Meneely 2014-07-22 17:40:31 -04:00
parent c79462146b
commit b7e9e5459a
1 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@ module Squib
svg = RSVG::Handle.new_from_file(file) svg = RSVG::Handle.new_from_file(file)
width = svg.width if width == :native width = svg.width if width == :native
height = svg.height if height == :native height = svg.height if height == :native
puts "Width and height #{width} #{height}, svg was #{svg.width} #{svg.height}"
tmp = Cairo::ImageSurface.new(width, height) tmp = Cairo::ImageSurface.new(width, height)
tmp_cc = Cairo::Context.new(tmp) tmp_cc = Cairo::Context.new(tmp)
tmp_cc.scale(width.to_f / svg.width.to_f, height.to_f / svg.height.to_f) tmp_cc.scale(width.to_f / svg.width.to_f, height.to_f / svg.height.to_f)