Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
alt
/
python27
/
share
/
doc
/
alt-python27-pycairo-1.8.6
/
examples
/
gtk
/
File Content:
text.py
#!/usr/bin/env python import cairo import gtk def expose_event(widget, event): ctx = widget.window.cairo_create() ctx.set_line_width(6) ctx.set_tolerance(.1) ctx.select_font_face('sans-serif') ctx.set_font_size(48) (x, y, width, height, dx, dy) = ctx.text_extents('Hello World') ctx.translate (100, 100) ctx.new_path() ctx.move_to(x-10,y-10) ctx.rel_line_to(width + 20, 0) ctx.rel_line_to(0, height + 20) ctx.rel_line_to(-(width + 20), 0) ctx.close_path() ctx.set_source_rgb(0,0,1) ctx.stroke() ctx.move_to(0, 0) ctx.set_source_rgb(0,0,0) ctx.show_text('Hello World') win = gtk.Window() win.connect('destroy', gtk.main_quit) drawingarea = gtk.DrawingArea() win.add(drawingarea) drawingarea.connect('expose_event', expose_event) drawingarea.set_size_request(400,150) win.show_all() gtk.main()
Submit
FILE
FOLDER
Name
Size
Permission
Action
cairo-demo.py
2511 bytes
0755
cairo-knockout.py
3558 bytes
0755
hangman.py
6694 bytes
0755
lsystem.py
3069 bytes
0755
png_view.py
682 bytes
0755
text.py
875 bytes
0755
N4ST4R_ID | Naxtarrr