Image and Images¶
Links: notebook
, html, PDF
, python
, slides, GitHub
This notebook illustrates images functionalies.
from jyquickhelper import add_notebook_menu
add_notebook_menu()
One local image¶
from pyquickhelper.helpgen import NbImage
NbImage("nbimage.png")

One remote image¶
from IPython.display import Image
Image('https://github.com/sdpython/pyquickhelper/raw/master/_doc/sphinxdoc/source/phdoc_static/project_ico.png')

NbImage('https://github.com/sdpython/pyquickhelper/raw/master/_doc/sphinxdoc/source/phdoc_static/project_ico.png')

Multiple local images¶
NbImage("nbimage.png", "nbimage.png", width=400)

Multiple remote images¶
NbImage("nbimage.png",
'https://github.com/sdpython/pyquickhelper/raw/master/_doc/sphinxdoc/source/phdoc_static/project_ico.png',
width=400)
