You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
307 B
11 lines
307 B
require 'cairo' |
|
require 'pango' |
|
require 'rsvg2' |
|
|
|
svg = RSVG::Handle.new_from_file('spanner.svg') |
|
pdf = Cairo::PDFSurface.new("_output/blahblah2.pdf",8.5*300, 11*300) |
|
cxt = Cairo::Context.new(pdf) |
|
cxt.translate(1900,500) |
|
cxt.render_rsvg_handle(svg, nil) |
|
cxt.translate(-500,0) |
|
cxt.render_rsvg_handle(svg, nil) |