MOON
Server: Apache
System: Linux server30c.hostingraja.org 3.10.0-962.3.2.lve1.5.63.el7.x86_64 #1 SMP Fri Oct 8 12:03:35 UTC 2021 x86_64
User: jibhires (1887)
PHP: 8.1.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open, allow_url_fopen, symlink, escapeshellcmd, pcntl_exec
Upload Files
File: //opt/alt/python27/share/doc/alt-python27-pycairo-1.8.6/examples/cairo_snippets/snippets/group.py
# demo/test for group functions
snippet_normalize (cr, width, height)

cr.rectangle (0.1, 0.1, 0.6, 0.6)
cr.set_line_width (0.03)
cr.set_source_rgb (0.8, 0.8, 0.8)
cr.fill()

cr.push_group()
cr.rectangle (0.3, 0.3, 0.6, 0.6)
cr.set_source (cairo.SolidPattern (1, 0, 0))
cr.fill_preserve()
cr.set_source (cairo.SolidPattern (0, 0, 0))
cr.stroke ()
cr.pop_group_to_source()
cr.paint_with_alpha (0.5)