.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "_gallery/image/image_simple.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr__gallery_image_image_simple.py: Simple Image ============ Example showing the simple plot creation with Standard imageio image. .. GENERATED FROM PYTHON SOURCE LINES 7-28 .. image-sg:: /_gallery/image/images/sphx_glr_image_simple_001.webp :alt: image simple :srcset: /_gallery/image/images/sphx_glr_image_simple_001.webp :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none Imageio: 'camera.png' was not found on your computer; downloading it now. Try 1. Download from https://github.com/imageio/imageio-binaries/raw/master/images/camera.png (136 kB) Downloading: 8192/139512 bytes (5.9%)139512/139512 bytes (100.0%) Done File saved as /home/runner/.imageio/images/camera.png. | .. code-block:: Python # test_example = true import fastplotlib as fpl import imageio.v3 as iio figure = fpl.Figure(size=(700, 560)) data = iio.imread("imageio:camera.png") # plot the image data image_graphic = figure[0, 0].add_image(data=data, name="iio camera") figure.show() # NOTE: `if __name__ == "__main__"` is NOT how to use fastplotlib interactively # please see our docs for using fastplotlib interactively in ipython and jupyter if __name__ == "__main__": print(__doc__) fpl.run() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 4.679 seconds) .. _sphx_glr_download__gallery_image_image_simple.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: image_simple.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: image_simple.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: image_simple.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_