ImageOutput
Image output widget for displaying images.
Signature
def ImageOutput(
image: Union[str, io.IOBase],
subtitle: str = '',
full_width: bool = False,
label: str = ''
)
Parameters
Name | Description | Type | Default |
---|---|---|---|
image (required) | The image to display, as a URL or file-like object. | Union[str, io.IOBase] | None |
subtitle | Text displayed below the image. | str | '' |
full_width | Whether the image should take up the full width of its container. | bool | False |
label | Text displayed above the image. | str | '' |