-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcairo_scale.py
60 lines (42 loc) · 1.23 KB
/
cairo_scale.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python3
import cairo
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
def draw(da, ctx):
global surface
ctx.scale(scale, scale)
ctx.set_source_surface(surface)
ctx.get_source().set_filter(cairo.FILTER_NEAREST)
ctx.paint()
da.set_size_request(surface.get_width() * scale, surface.get_height() * scale)
def clicked(btn):
global scale
scale *= 1.5
da = btn.get_parent().get_children()[1].get_child().get_child()
da.queue_draw()
def main():
global scale
scale = 1
global surface
surface = cairo.ImageSurface.create_from_png("../Xe-Project/Gift.png")
win = Gtk.Window()
win.connect('destroy', lambda w: Gtk.main_quit())
win.set_default_size(500, 500)
box = Gtk.Box()
win.add(box)
btn = Gtk.Button()
btn.set_label("Scale")
box.add(btn)
btn.connect('clicked', clicked)
scrolled_win = Gtk.ScrolledWindow()
box.add(scrolled_win)
drawingarea = Gtk.DrawingArea()
drawingarea.set_vexpand(True)
drawingarea.set_hexpand(True)
scrolled_win.add(drawingarea)
drawingarea.connect('draw', draw)
win.show_all()
Gtk.main()
if __name__ == '__main__':
main()