Cairo: Difference between revisions
No edit summary |
No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Cairo is a free software 2D graphics library. It is vector-based, and can be used to produce SVG and PDF format images, for instance. It is cross-platform (Linux, Mac, and Windows). Cairo is used as the rendering engine in the latest version of the [[Firefox]] browser. | Cairo is a free software 2D graphics library. It is vector-based, and can be used to produce SVG and PDF format images, for instance. It is cross-platform (Linux, Mac, and Windows). Cairo is used as the rendering engine in the latest version of the [[Firefox]] browser (and as such cairo-produced SVG graphics are implicitly well suited for display in Firefox). | ||
[http://cairographics.org/ Main Cairo website] | [http://cairographics.org/ Main Cairo website] | ||
Line 5: | Line 5: | ||
== Python == | == Python == | ||
[http://www.tortall.net/mu/wiki/CairoTutorial Cairo tutorial in Python] | === Installing on Debian === | ||
<source lang="bash"> | |||
sudo apt-get install python-cairo | |||
</source> | |||
=== Reference === | |||
* [http://www.tortall.net/mu/wiki/CairoTutorial Cairo tutorial in Python] | |||
* [http://cairographics.org/documentation/pycairo/ Cairo documentation for Python] | |||
* [http://cairographics.org/manual/ Main programming documentation] |
Latest revision as of 16:29, 19 June 2009
Cairo is a free software 2D graphics library. It is vector-based, and can be used to produce SVG and PDF format images, for instance. It is cross-platform (Linux, Mac, and Windows). Cairo is used as the rendering engine in the latest version of the Firefox browser (and as such cairo-produced SVG graphics are implicitly well suited for display in Firefox).
Python
Installing on Debian
sudo apt-get install python-cairo