I am quite new in using sphinx, Doing documentation for the first time for the python project. How to embed image for example in the sphinx documentation ?
5 Answers
From the documenation:
There are two image directives:
image
andfigure
.An
image
is a simple picture.A
figure
consists of image data (including image options), an optional caption (a single paragraph), and an optional legend (arbitrary body elements). For page-based output media, figures might float to a different position if this helps the page layout.
Example for image
usage:
.. image:: picture.jpg
:width: 200px
:height: 100px
:scale: 50 %
:alt: alternate text
:align: right
Example for figure
usage:
.. figure:: picture.png
:scale: 50 %
:alt: map to buried treasure
This is the caption of the figure (a simple paragraph).

- 8,694
- 4
- 26
- 23

- 2,083
- 1
- 19
- 25
Use the image
directive, for example:
.. image:: example.png
The path to the image is relative to the file. See the Sphinx documentation for more information.

- 3,345
- 1
- 27
- 32
-
4Also I can recommend trying out the `.. figure::` directive, as it has some nice features. β wswld Sep 17 '14 at 11:54
In case anyone is looking to include an inline image, the following works:
The |biohazard| symbol must be used on containers used to dispose of medical waste.
.. |biohazard| image:: biohazard.png
(From https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#substitution-definitions)

- 1,691
- 5
- 22
- 38
-
1Exactly what I was searching for, thank you! Once your image has been defined somewhere, the link (here `|biohazard|`) can be re-used inside the same documentation page easily. β jeannej Sep 07 '22 at 12:54
Make sure there is a line between above the line that says .. image::
My image wasn't showing, but I just had to separate it from the text line that was above it.

- 11
- 1
Since you have to use a relative path, I created a images
directory, in which case I needed to use the following for the image path:
.. image:: ..\\images\\image.png

- 76
- 4
-
As itβs currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). β Community May 29 '22 at 19:45