[cairo-commit]
rcairo/samples pdf-a4_grid.rb, NONE, 1.1 pdf.rb, 1.2,
NONE png.rb, 1.1, 1.2
Oeyvind Kolaas
commit at pdx.freedesktop.org
Thu Mar 17 08:02:59 PST 2005
- Previous message: [cairo-commit] rcairo ChangeLog,1.12,1.13
- Next message: [cairo-commit] rcairo/packages/cairo/ext rb_cairo_context.c, 1.3,
1.4 rb_cairo_exception.c, 1.1, 1.2 rb_cairo_matrix.c, 1.2,
1.3 rb_cairo_surface.c, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: pippin
Update of /cvs/cairo/rcairo/samples
In directory gabe:/tmp/cvs-serv21997/samples
Modified Files:
png.rb
Added Files:
pdf-a4_grid.rb
Removed Files:
pdf.rb
Log Message:
adding surface.finish (for pdf)
--- NEW FILE: pdf-a4_grid.rb ---
#!/usr/bin/env ruby
$LOAD_PATH.unshift "../packages/cairo/ext/"
$LOAD_PATH.unshift "../packages/cairo/lib/"
require 'cairo'
INCHES_PER_MM = (1.0/25.4)
WIDTH = 210 # millimeters are needed for a european to make
HEIGHT = 297 # heads or tails of things,..
DPI = 72 # this must be 72,. any other value,. and
# the dimensions of the generated pdf is wrong
FILENAME = 'pdf-a4_grid.pdf'
def grid_5mm cr
cr.save {
cr.rgb_color = 0.5, 0.5, 0.5
cr.line_width = 0.1
cr.stroke {
cr.move_to(0, 0)
(HEIGHT/5+1).times {
cr.rel_line_to(WIDTH, 0)
cr.rel_move_to(-WIDTH, 5)
}
cr.move_to(0, 0)
(WIDTH/5).times {
cr.rel_line_to(0, HEIGHT)
cr.rel_move_to(5, -HEIGHT)
}
}
}
end
def include_text cr, x, y, file
cr.select_font "Mono", Cairo::FONT_WEIGHT_NORMAL,
Cairo::FONT_SLANT_NORMAL
cr.scale_font 5
cr.rgb_color = 0,0,0
puts file
File.open(file).each{
|line|
line.chomp!
cr.move_to(x,y)
cr.show_text line
y = y+5
if y>290 then
cr.show_page
grid_5mm cr
y = 9
end
}
end
File.open(FILENAME, "wb") {
|stream|
cr = Cairo::Context.new
cr.set_target_pdf(stream,
WIDTH * INCHES_PER_MM, HEIGHT * INCHES_PER_MM,
DPI, DPI)
foo_factor = (96.0/72.0) # the foo factor is 1.3333,. but I suspect
# the magic numbers on the left has
# something to do with it
cr.scale(INCHES_PER_MM * DPI * foo_factor,
INCHES_PER_MM * DPI * foo_factor)
grid_5mm cr
cr.select_font "Sans", Cairo::FONT_WEIGHT_NORMAL,
Cairo::FONT_SLANT_NORMAL
cr.scale_font 8
cr.rgb_color = 1,0,0
cr.move_to 10, 15 # move to a suitable spot
cr.show_text "#Hmm,. still too many unknowns in unit handling"
include_text cr, 10, 24, "pdf-a4_grid.rb"
cr.show_page
cr.target_surface.finish
}
__END__
It is possible to force things into behaving,. but it there is
amounts of juggling that should be unneeded that was neccesary
to make it work,
/OEyvind Kolaas aka pippin (hmm,. the embedding of fonts,
doesn't seem to like UTF8,. it works when using cr.text_path
instead of cr.show_text though,..)
--- pdf.rb DELETED ---
Index: png.rb
===================================================================
RCS file: /cvs/cairo/rcairo/samples/png.rb,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- png.rb 8 Feb 2005 01:33:00 -0000 1.1
+++ png.rb 17 Mar 2005 16:02:57 -0000 1.2
@@ -39,3 +39,5 @@
cr.show_page
}
+
+puts "foo"
- Previous message: [cairo-commit] rcairo ChangeLog,1.12,1.13
- Next message: [cairo-commit] rcairo/packages/cairo/ext rb_cairo_context.c, 1.3,
1.4 rb_cairo_exception.c, 1.1, 1.2 rb_cairo_matrix.c, 1.2,
1.3 rb_cairo_surface.c, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list