In this article, we will learn how we can draw an outline to a solid surface using PyCairo in python. The outline is basically a border to the object, it is used to highlight the object.
PyCairo: Pycairo is a Python module providing bindings for the Cairo graphics library. This library is used for creating SVG i.e vector files in python. The easiest and quickest way to open an SVG file to view it (read-only) is with a modern web browser like Chrome, Firefox, Edge, or Internet Explorer nearly all of them should provide some sort of rendering support for the SVG format.
SVG: File is a graphics file that uses a two-dimensional vector graphic format created by the World Wide Web Consortium (W3C). It describes images using a text format that is based on XML. SVG files are developed as a standard format for displaying vector graphics on the web.
Steps of Implementation :
- Import the Pycairo module.
- Create an SVG surface object and add context to it.
- Setting color of the context & line width
- Creating Shape
- Preserving inside color of object, so that the border color can be changed which can be used as outline
- Setting color & width of border i.e outline
Example 1 :
Python3
import cairo
with cairo.SVGSurface( "geek95.svg" , 700 , 700 ) as surface:
context = cairo.Context(surface)
context.rectangle( 25 , 50 , 50 , 120 )
context.set_source_rgb( 1 , 0 , 0 )
context.fill()
context.rectangle( 125 , 50 , 50 , 120 )
context.set_source_rgb( 0 , 1 , 1 )
context.set_line_width( 4 )
context.stroke()
context.rectangle( 225 , 50 , 50 , 120 )
context.set_source_rgb( 0 , 0 , 1 )
context.fill_preserve()
context.set_source_rgb( 1 , 1 , 0 )
context.set_line_width( 4 )
context.stroke()
print ( "File Saved" )
|
Output :

Example 2:
Python3
import cairo
with cairo.SVGSurface( "geek95.svg" , 700 , 700 ) as surface:
context = cairo.Context(surface)
context.arc( 500 , 60 , 40 , 0 , 2 * 22 / 7 )
context.set_source_rgb( 0 , 0 , 0 )
context.fill_preserve()
context.set_source_rgb( 1 , 1 , 0 )
context.set_line_width( 4 )
context.stroke()
print ( "File Saved" )
|
Output :

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!