Skip to content

Commit cfa3cc7

Browse files
committed
Update link to Agg website
Fixes #21311
1 parent 184f42d commit cfa3cc7

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

doc/users/history.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ backends: PS creates `PostScript®
7575
<https://www.adobe.com/products/postscript.html>`_ hardcopy, SVG
7676
creates `Scalable Vector Graphics <https://www.w3.org/Graphics/SVG/>`_
7777
hardcopy, Agg creates PNG output using the high quality `Anti-Grain
78-
Geometry <http://antigrain.com/>`_
78+
Geometry <http://agg.sourceforge.net/antigrain.com/>`_
7979
library that ships with Matplotlib, GTK embeds Matplotlib in a
8080
`Gtk+ <https://www.gtk.org/>`_
8181
application, GTKAgg uses the Anti-Grain renderer to create a figure

examples/misc/demo_agg_filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
rendering. You can modify the rendering of Artists by applying a filter via
88
`.Artist.set_agg_filter`.
99
10-
.. _Anti-Grain Geometry (AGG): http://antigrain.com
10+
.. _Anti-Grain Geometry (AGG): http://agg.sourceforge.net/antigrain.com
1111
"""
1212

1313
import matplotlib.cm as cm

lib/matplotlib/backends/backend_agg.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
An `Anti-Grain Geometry <http://antigrain.com>`_ (AGG) backend.
2+
An `Anti-Grain Geometry`_ (AGG) backend.
33
44
Features that are implemented:
55
@@ -17,6 +17,8 @@
1717
Still TODO:
1818
1919
* integrate screen dpi w/ ppi and text
20+
21+
.. _Anti-Grain Geometry: http://agg.sourceforge.net/antigrain.com
2022
"""
2123

2224
try:

src/ft2font.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
To improve the hinting of the fonts, this code uses a hack
2121
presented here:
2222
23-
http://antigrain.com/research/font_rasterization/index.html
23+
http://agg.sourceforge.net/antigrain.com/research/font_rasterization/index.html
2424
2525
The idea is to limit the effect of hinting in the x-direction, while
2626
preserving hinting in the y-direction. Since freetype does not

tutorials/introductory/usage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def my_plotter(ax, data1, data2, param_dict):
444444
# The names of builtin backends case-insensitive; e.g., 'QtAgg' and
445445
# 'qtagg' are equivalent.
446446
#
447-
# .. _`Anti-Grain Geometry`: http://antigrain.com/
447+
# .. _`Anti-Grain Geometry`: http://agg.sourceforge.net/antigrain.com/
448448
# .. _`Portable Document Format`: https://en.wikipedia.org/wiki/Portable_Document_Format
449449
# .. _Postscript: https://en.wikipedia.org/wiki/PostScript
450450
# .. _`Scalable Vector Graphics`: https://en.wikipedia.org/wiki/Scalable_Vector_Graphics

0 commit comments

Comments
 (0)