Skip to content

Commit d9553d3

Browse files
heiderichstevengj
authored andcommitted
fix links to multimedia I/O API (#448)
1 parent cc45ced commit d9553d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package to call Matplotlib directly from Julia with little or no
1212
overhead (arrays are passed without making a copy).
1313

1414
This package takes advantage of Julia's [multimedia
15-
I/O](https://docs.julialang.org/en/latest/stdlib/io-network.html#Multimedia-I/O-1)
15+
I/O](https://docs.julialang.org/en/latest/base/io-network/#Multimedia-I/O-1)
1616
API to display plots in any Julia graphical backend, including as
1717
inline graphics in [IJulia](https://github.com/JuliaLang/IJulia.jl).
1818
Alternatively, you can use a Python-based graphical Matplotlib
@@ -129,7 +129,7 @@ You can get the current figure as a `Figure` object (a wrapper
129129
around `matplotlib.pyplot.Figure`) by calling `gcf()`.
130130

131131
The `Figure` type supports Julia's [multimedia I/O
132-
API](http://docs.julialang.org/en/latest/stdlib/base/#multimedia-i-o),
132+
API](https://docs.julialang.org/en/latest/base/io-network/#Multimedia-I/O-1),
133133
so you can use `display(fig)` to show a `fig::PyFigure` and
134134
`show(io, mime, fig)` (or `writemime` in Julia 0.4) to write it to a given `mime` type string
135135
(e.g. `"image/png"` or `"application/pdf"`) that is supported by the
@@ -154,7 +154,7 @@ PyPlot can use any Julia graphics backend capable of displaying PNG,
154154
SVG, or PDF images, such as the IJulia environment. To use a
155155
different backend, simply call `pushdisplay` with the desired
156156
`Display`; see the [Julia multimedia display
157-
API](http://docs.julialang.org/en/latest/stdlib/io-network/#multimedia-i-o)
157+
API](https://docs.julialang.org/en/latest/base/io-network/#Multimedia-I/O-1)
158158
for more detail.
159159

160160
On the other hand, you may wish to use one of the Python Matplotlib

0 commit comments

Comments
 (0)