Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 146116b

Browse files
committed
updates to installation faq and glossary
svn path=/trunk/matplotlib/; revision=5537
1 parent 5dba251 commit 146116b

2 files changed

Lines changed: 37 additions & 24 deletions

File tree

doc/faq/installing_faq.rst

Lines changed: 35 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -113,32 +113,45 @@ depends on a DPI setting.
113113
Here is a summary of the matplotlib renderers (there is an eponymous
114114
backed for each):
115115

116-
=============================== =====================================================================================
117-
Renderer (Filetypes) Description
118-
=============================== =====================================================================================
119-
Agg (png) raster - high quality images using the `antigrain <http://antigrain.html>`_ engine
120-
PS (ps, eps) vector - postscript output
121-
PDF (pdf) vector - portable document format
122-
SVG (svg) vector - scalar vector graphics
123-
Cairo (png, ps, pdf, svn, ...) vector - `cairo graphics <http://cairographics.org>`_
124-
GDK (png, jpg, tiff..) raster - the GDK drawing API for GTK
125-
=============================== =====================================================================================
116+
======== ====================== ======================================================================================
117+
Renderer Filetypes Description
118+
======== ====================== ======================================================================================
119+
AGG png :term:`raster graphics` -- high quality images using the `Anti-Grain Geometry`_ engine
120+
PS ps, eps :term:`vector graphics` -- Postscript_ output
121+
PDF pdf :term:`vector graphics` -- `Portable Document Format`_
122+
SVG svg :term:`vector graphics` -- `Scalable Vector Graphics`_
123+
Cairo png, ps, pdf, svn, ... :term:`vector graphics` -- `Cairo graphics`_
124+
GDK png, jpg, tiff, ... :term:`raster graphics` -- the `Gimp Drawing Kit`_ for GTK
125+
======== ====================== ======================================================================================
126126

127127
And here are the user interfaces and renderer combinations supported:
128128

129-
============ ===================================================================================================
129+
============ =====================================================================================
130130
Backend Description
131-
============ ===================================================================================================
132-
GTKAgg Agg rendering to a GTK canvas (`pygtk <http://www.pygtk.org>`_)
133-
GTK GDK rendering to a GTK canvas (not recommended) (`pygtk <http://www.pygtk.org>`_)
134-
GTKCairo Cairo rendering to a GTK Canvas (`pygtk <http://www.pygtk.org>`_)
135-
WXAgg Agg rendering to to a WX canvas (`wxpython <http://www.wxpython.org>`_)
136-
WX Native WX drawing to a WX Canvas (not recommended) (`wxpython <http://www.wxpython.org>`_)
137-
TkAgg Agg rendering to a Tkinter canvas (`tkinter <http://wiki.python.org/moin/TkInter>`_)
138-
QtAgg Agg rendering to a Qt canvas (`pyqt <http://www.riverbankcomputing.co.uk/software/pyqt/intro>`_)
139-
Qt4Agg Agg rendering to a Qt4 canvas (`pyqt <http://www.riverbankcomputing.co.uk/software/pyqt/intro>`_)
140-
FLTKAgg Agg rendering to a FLTK canvas (`pyfltk <http://pyfltk.sourceforge.net>`_)
141-
============ ===================================================================================================
131+
============ =====================================================================================
132+
GTKAgg Agg rendering to a GTK canvas (requires PyGTK_)
133+
GTK GDK rendering to a GTK canvas (not recommended) (requires PyGTK_)
134+
GTKCairo Cairo rendering to a GTK Canvas (requires PyGTK_)
135+
WXAgg Agg rendering to to a wxWidgets canvas (requires wxPython_)
136+
WX Native wxWidgets drawing to a wxWidgets Canvas (not recommended) (requires wxPython_)
137+
TkAgg Agg rendering to a Tk canvas (requires TkInter_)
138+
QtAgg Agg rendering to a Qt canvas (requires PyQt_)
139+
Qt4Agg Agg rendering to a Qt4 canvas (requires PyQt4_)
140+
FLTKAgg Agg rendering to a FLTK canvas (requires pyFLTK_)
141+
============ =====================================================================================
142+
143+
.. _`Anti-Grain Geometry`: http://www.antigrain.com/
144+
.. _Postscript: http://en.wikipedia.org/wiki/PostScript
145+
.. _`Portable Document Format`: http://en.wikipedia.org/wiki/Portable_Document_Format
146+
.. _`Scalable Vector Graphics`: http://en.wikipedia.org/wiki/Scalable_Vector_Graphics
147+
.. _`Cairo graphics`: http://en.wikipedia.org/wiki/Cairo_(graphics)
148+
.. _`Gimp Drawing Kit`: http://en.wikipedia.org/wiki/GDK
149+
.. _PyGTK: http://www.pygtk.org
150+
.. _wxPython: http://www.wxpython.org/
151+
.. _TkInter: http://wiki.python.org/moin/TkInter
152+
.. _PyQt: http://www.riverbankcomputing.co.uk/software/pyqt/intro
153+
.. _PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro
154+
.. _pyFLTK: http://pyfltk.sourceforge.net
142155

143156

144157
OS-X questions

doc/glossary/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Glossary
77
raster graphics
88
Raster graphics, or bitmaps, represent an image as an array of pixels
99
which is resolution dependent. Raster graphics are generally most
10-
practical for photo-realistic images, but do not easily without loss of
11-
quality.
10+
practical for photo-realistic images, but do not scale easily without
11+
loss of quality.
1212

1313
vector graphics
1414
The use of geometrical primitives based upon mathematical equations to

0 commit comments

Comments
 (0)