Image#
- marimo.image(src: str | bytes | BytesIO | BufferedReader, alt: str | None = None, width: int | None = None, height: int | None = None, rounded: bool = False, style: dict[str, Any] | None = None) Html #
Render an image as HTML.
Examples.
# Render an image from a local file mo.image(src="path/to/image.png")
# Render an image from a URL mo.image( src="https://marimo.io/logo.png", alt="Marimo logo", width=100, height=100, rounded=True, )
Args.
src
: a path or URL to an image, or a file-like object (opened in binary mode)alt
: the alt text of the imagewidth
: the width of the image in pixelsheight
: the height of the image in pixelsrounded
: whether to round the corners of the imagestyle
: a dictionary of CSS styles to apply to the image
Returns.
Html
object