---
tags: [gradio-custom-component, Gallery]
title: gradio_downloadgallery
short_description: gallery with download button
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---
# `gradio_downloadgallery`
<a href="https://pypi.org/project/gradio_downloadgallery/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_downloadgallery"></a>
gallery with download button
## Installation
```bash
pip install gradio_downloadgallery
```
## Usage
```python
import gradio as gr
from gradio_downloadgallery import DownloadGallery
example = DownloadGallery().example_value()
payload = DownloadGallery().example_payload()
with gr.Blocks() as demo:
with gr.Row():
# DownloadGallery(label="Blank"), # blank component
gallery = DownloadGallery(value=example, interactive=False) #
def on_toggle_favorite(value, evt: gr.EventData):
favorite = evt._data["favorite"]
if favorite:
# add here logic to save the image to favorites
print(f"Add {evt._data['image']['orig_name']} to favorites")
else:
# add here logic to remove the image from favorites
print(f"Remove {evt._data['image']['orig_name']} from favorites")
gallery.toggle_favorite(on_toggle_favorite, gallery, None)
if __name__ == "__main__":
demo.launch()
```
## `DownloadGallery`
### Initialization
<table>
<thead>
<tr>
<th align="left">name</th>
<th align="left" style="width: 25%;">type</th>
<th align="left">default</th>
<th align="left">description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">
```python
Sequence[
np.ndarray | PIL.Image.Image | str | Path | tuple
]
| Callable
| None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">List of images to display in the gallery by default. If callable, the function will be called whenever the app loads to set the initial value of the component.</td>
</tr>
<tr>
<td align="left"><code>format</code></td>
<td align="left" style="width: 25%;">
```python
str
```
</td>
<td align="left"><code>"webp"</code></td>
<td align="left">Format to save images before they are returned to the frontend, such as 'jpeg' or 'png'. This parameter only applies to images that are returned from the prediction function as numpy arrays or PIL Images. The format should be supported by the PIL library.</td>
</tr>
<tr>
<td align="left"><code>label</code></td>
<td align="left" style="width: 25%;">
```python
str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">The label for this component. Appears above the component and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component is assigned to.</td>
</tr>
<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">
```python
Timer | float | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.</td>
</tr>
<tr>
<td align="left"><code>inputs</code></td>
<td align="left" style="width: 25%;">
```python
Component | Sequence[Component] | set[Component] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.</td>
</tr>
<tr>
<td align="left"><code>show_label</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">if True, will display label.</td>
</tr>
<tr>
<td align="left"><code>container</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If True, will place the component in a container - providing some extra padding around the border.</td>
</tr>
<tr>
<td align="left"><code>scale</code></td>
<td align="left" style="width: 25%;">
```python
int | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>
</tr>
<tr>
<td align="left"><code>min_width</code></td>
<td align="left" style="width: 25%;">
```python
int
```
</td>
<td align="left"><code>160</code></td>
<td align="left">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>
</tr>
<tr>
<td align="left"><code>visible</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If False, component will be hidden.</td>
</tr>
<tr>
<td align="left"><code>elem_id</code></td>
<td align="left" style="width: 25%;">
```python
str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>
<tr>
<td align="left"><code>elem_classes</code></td>
<td align="left" style="width: 25%;">
```python
list[str] | str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>
<tr>
<td align="left"><code>render</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>
</tr>
<tr>
<td align="left"><code>key</code></td>
<td align="left" style="width: 25%;">
```python
int | str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved.</td>
</tr>
<tr>
<td align="left"><code>columns</code></td>
<td align="left" style="width: 25%;">
```python
int | list[int] | Tuple[int, ...] | None
```
</td>
<td align="left"><code>2</code></td>
<td align="left">Represents the number of images that should be shown in one row, for each of the six standard screen sizes (<576px, <768px, <992px, <1200px, <1400px, >1400px). If fewer than 6 are given then the last will be used for all subsequent breakpoints</td>
</tr>
<tr>
<td align="left"><code>rows</code></td>
<td align="left" style="width: 25%;">
```python
int | list[int] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Represents the number of rows in the image grid, for each of the six standard screen sizes (<576px, <768px, <992px, <1200px, <1400px, >1400px). If fewer than 6 are given then the last will be used for all subsequent breakpoints</td>
</tr>
<tr>
<td align="left"><code>height</code></td>
<td align="left" style="width: 25%;">
```python
int | float | str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">The height of the gallery component, specified in pixels if a number is passed, or in CSS units if a string is passed. If more images are displayed than can fit in the height, a scrollbar will appear.</td>
</tr>
<tr>
<td align="left"><code>allow_preview</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If True, images in the gallery will be enlarged when they are clicked. Default is True.</td>
</tr>
<tr>
<td align="left"><code>preview</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">If True, downloadGallery will start in preview mode, which shows all of the images as thumbnails and allows the user to click on them to view them in full size. Only works if allow_preview is True.</td>
</tr>
<tr>
<td align="left"><code>selected_index</code></td>
<td align="left" style="width: 25%;">
```python
int | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">The index of the image that should be initially selected. If None, no image will be selected at start. If provided, will set downloadGallery to preview mode unless allow_preview is set to False.</td>
</tr>
<tr>
<td align="left"><code>object_fit</code></td>
<td align="left" style="width: 25%;">
```python
Literal[
"contain", "cover", "fill", "none", "scale-down"
]
| None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">CSS object-fit property for the thumbnail images in the gallery. Can be "contain", "cover", "fill", "none", or "scale-down".</td>
</tr>
<tr>
<td align="left"><code>show_share_button</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">If True, will show a share icon in the corner of the component that allows user to share outputs to Hugging Face Spaces Discussions. If False, icon does not appear. If set to None (default behavior), then the icon appears if this Gradio app is launched on Spaces, but not otherwise.</td>
</tr>
<tr>
<td align="left"><code>show_download_button</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If True, will show a download button in the corner of the selected image. If False, the icon does not appear. Default is True.</td>
</tr>
<tr>
<td align="left"><code>interactive</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">If True, the gallery will be interactive, allowing the user to upload images. If False, the gallery will be static. Default is True.</td>
</tr>
<tr>
<td align="left"><code>type</code></td>
<td align="left" style="width: 25%;">
```python
Literal["numpy", "pil", "filepath"]
```
</td>
<td align="left"><code>"filepath"</code></td>
<td align="left">The format the image is converted to before being passed into the prediction function. "numpy" converts the image to a numpy array with shape (height, width, 3) and values from 0 to 255, "pil" converts the image to a PIL image object, "filepath" passes a str path to a temporary file containing the image. If the image is SVG, the `type` is ignored and the filepath of the SVG is returned.</td>
</tr>
<tr>
<td align="left"><code>show_fullscreen_button</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If True, will show a fullscreen icon in the corner of the component that allows user to view the gallery in fullscreen mode. If False, icon does not appear. If set to None (default behavior), then the icon appears if this Gradio app is launched on Spaces, but not otherwise.</td>
</tr>
</tbody></table>
### Events
| name | description |
|:-----|:------------|
| `select` | Event listener for when the user selects or deselects the DownloadGallery. Uses event data gradio.SelectData to carry `value` referring to the label of the DownloadGallery, and `selected` to refer to state of the DownloadGallery. See EventData documentation on how to use this event data |
| `upload` | This listener is triggered when the user uploads a file into the DownloadGallery. |
| `change` | Triggered when the value of the DownloadGallery changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |
| `toggle_favorite` | Triggered when the user clicks on the favorite icon of an image |
### User function
The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).
- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.
The code snippet below is accurate in cases where the component is used as both an input and an output.
- **As output:** Is passed, passes the list of images as a list of (image, caption) tuples, or a list of (image, None) tuples if no captions are provided (which is usually the case). The image can be a `str` file path, a `numpy` array, or a `PIL.Image` object depending on `type`.
- **As input:** Should return, expects the function to return a `list` of images, or `list` of (image, `str` caption) tuples. Each image can be a `str` file path, a `numpy` array, or a `PIL.Image` object.
```python
def predict(
value: list[tuple[str, str | None, bool | None]]
| list[tuple[PIL.Image.Image, str | None, bool | None]]
| list[tuple[numpy.ndarray, str | None, bool | None]]
| None
) -> list[
numpy.ndarray
| PIL.Image.Image
| pathlib.Path
| str
| tuple[
numpy.ndarray
| PIL.Image.Image
| pathlib.Path
| str,
str,
]
| tuple[
numpy.ndarray
| PIL.Image.Image
| pathlib.Path
| str,
str,
bool,
]
]
| None:
return value
```
Raw data
{
"_id": null,
"home_page": null,
"name": "gradio-downloadgallery",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "gradio-custom-component, gradio-template-Gallery",
"author": null,
"author_email": "YOUR NAME <YOUREMAIL@domain.com>",
"download_url": "https://files.pythonhosted.org/packages/39/45/2bcd882ed119ae401d4d53d55288a5b7fc988dfc552aaf52b5476712e0b2/gradio_downloadgallery-0.0.3.tar.gz",
"platform": null,
"description": "---\ntags: [gradio-custom-component, Gallery]\ntitle: gradio_downloadgallery\nshort_description: gallery with download button\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_downloadgallery`\n<a href=\"https://pypi.org/project/gradio_downloadgallery/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_downloadgallery\"></a> \n\ngallery with download button\n\n## Installation\n\n```bash\npip install gradio_downloadgallery\n```\n\n## Usage\n\n```python\nimport gradio as gr\nfrom gradio_downloadgallery import DownloadGallery\n\nexample = DownloadGallery().example_value()\npayload = DownloadGallery().example_payload()\n\nwith gr.Blocks() as demo:\n with gr.Row():\n # DownloadGallery(label=\"Blank\"), # blank component\n gallery = DownloadGallery(value=example, interactive=False) #\n\n def on_toggle_favorite(value, evt: gr.EventData):\n favorite = evt._data[\"favorite\"]\n if favorite:\n # add here logic to save the image to favorites\n print(f\"Add {evt._data['image']['orig_name']} to favorites\")\n else:\n # add here logic to remove the image from favorites\n print(f\"Remove {evt._data['image']['orig_name']} from favorites\")\n\n gallery.toggle_favorite(on_toggle_favorite, gallery, None)\n\n\nif __name__ == \"__main__\":\n demo.launch()\n\n```\n\n## `DownloadGallery`\n\n### Initialization\n\n<table>\n<thead>\n<tr>\n<th align=\"left\">name</th>\n<th align=\"left\" style=\"width: 25%;\">type</th>\n<th align=\"left\">default</th>\n<th align=\"left\">description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nSequence[\n np.ndarray | PIL.Image.Image | str | Path | tuple\n ]\n | Callable\n | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">List of images to display in the gallery by default. If callable, the function will be called whenever the app loads to set the initial value of the component.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>format</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\"webp\"</code></td>\n<td align=\"left\">Format to save images before they are returned to the frontend, such as 'jpeg' or 'png'. This parameter only applies to images that are returned from the prediction function as numpy arrays or PIL Images. The format should be supported by the PIL library.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The label for this component. Appears above the component and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component is assigned to.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nTimer | float | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>inputs</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nComponent | Sequence[Component] | set[Component] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, will display label.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>container</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, will place the component in a container - providing some extra padding around the border.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>min_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>160</code></td>\n<td align=\"left\">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>visible</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, component will be hidden.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_classes</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>render</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>key</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>columns</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | list[int] | Tuple[int, ...] | None\n```\n\n</td>\n<td align=\"left\"><code>2</code></td>\n<td align=\"left\">Represents the number of images that should be shown in one row, for each of the six standard screen sizes (<576px, <768px, <992px, <1200px, <1400px, >1400px). If fewer than 6 are given then the last will be used for all subsequent breakpoints</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>rows</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | list[int] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Represents the number of rows in the image grid, for each of the six standard screen sizes (<576px, <768px, <992px, <1200px, <1400px, >1400px). If fewer than 6 are given then the last will be used for all subsequent breakpoints</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>height</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | float | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The height of the gallery component, specified in pixels if a number is passed, or in CSS units if a string is passed. If more images are displayed than can fit in the height, a scrollbar will appear.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>allow_preview</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, images in the gallery will be enlarged when they are clicked. Default is True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>preview</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If True, downloadGallery will start in preview mode, which shows all of the images as thumbnails and allows the user to click on them to view them in full size. Only works if allow_preview is True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>selected_index</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The index of the image that should be initially selected. If None, no image will be selected at start. If provided, will set downloadGallery to preview mode unless allow_preview is set to False.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>object_fit</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\n \"contain\", \"cover\", \"fill\", \"none\", \"scale-down\"\n ]\n | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">CSS object-fit property for the thumbnail images in the gallery. Can be \"contain\", \"cover\", \"fill\", \"none\", or \"scale-down\".</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_share_button</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If True, will show a share icon in the corner of the component that allows user to share outputs to Hugging Face Spaces Discussions. If False, icon does not appear. If set to None (default behavior), then the icon appears if this Gradio app is launched on Spaces, but not otherwise.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_download_button</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, will show a download button in the corner of the selected image. If False, the icon does not appear. Default is True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>interactive</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If True, the gallery will be interactive, allowing the user to upload images. If False, the gallery will be static. Default is True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\"numpy\", \"pil\", \"filepath\"]\n```\n\n</td>\n<td align=\"left\"><code>\"filepath\"</code></td>\n<td align=\"left\">The format the image is converted to before being passed into the prediction function. \"numpy\" converts the image to a numpy array with shape (height, width, 3) and values from 0 to 255, \"pil\" converts the image to a PIL image object, \"filepath\" passes a str path to a temporary file containing the image. If the image is SVG, the `type` is ignored and the filepath of the SVG is returned.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_fullscreen_button</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, will show a fullscreen icon in the corner of the component that allows user to view the gallery in fullscreen mode. If False, icon does not appear. If set to None (default behavior), then the icon appears if this Gradio app is launched on Spaces, but not otherwise.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `select` | Event listener for when the user selects or deselects the DownloadGallery. Uses event data gradio.SelectData to carry `value` referring to the label of the DownloadGallery, and `selected` to refer to state of the DownloadGallery. See EventData documentation on how to use this event data |\n| `upload` | This listener is triggered when the user uploads a file into the DownloadGallery. |\n| `change` | Triggered when the value of the DownloadGallery changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |\n| `toggle_favorite` | Triggered when the user clicks on the favorite icon of an image |\n\n\n\n### User function\n\nThe impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).\n\n- When used as an Input, the component only impacts the input signature of the user function.\n- When used as an output, the component only impacts the return signature of the user function.\n\nThe code snippet below is accurate in cases where the component is used as both an input and an output.\n\n- **As output:** Is passed, passes the list of images as a list of (image, caption) tuples, or a list of (image, None) tuples if no captions are provided (which is usually the case). The image can be a `str` file path, a `numpy` array, or a `PIL.Image` object depending on `type`.\n- **As input:** Should return, expects the function to return a `list` of images, or `list` of (image, `str` caption) tuples. Each image can be a `str` file path, a `numpy` array, or a `PIL.Image` object.\n\n ```python\n def predict(\n value: list[tuple[str, str | None, bool | None]]\n | list[tuple[PIL.Image.Image, str | None, bool | None]]\n | list[tuple[numpy.ndarray, str | None, bool | None]]\n | None\n ) -> list[\n numpy.ndarray\n | PIL.Image.Image\n | pathlib.Path\n | str\n | tuple[\n numpy.ndarray\n | PIL.Image.Image\n | pathlib.Path\n | str,\n str,\n ]\n | tuple[\n numpy.ndarray\n | PIL.Image.Image\n | pathlib.Path\n | str,\n str,\n bool,\n ]\n ]\n | None:\n return value\n ```\n \n",
"bugtrack_url": null,
"license": null,
"summary": "gallery with download button",
"version": "0.0.3",
"project_urls": null,
"split_keywords": [
"gradio-custom-component",
" gradio-template-gallery"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "92e87a4cb529d2309fb6395d6153cf98406a5f4f8367129ccf2713cce1388a44",
"md5": "4fd0b4866979e31604f673b76cd70b72",
"sha256": "75a9877083c92e99464e070381a21a2520ecf645bc889371b8604fc20c53c006"
},
"downloads": -1,
"filename": "gradio_downloadgallery-0.0.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4fd0b4866979e31604f673b76cd70b72",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 75512,
"upload_time": "2024-09-02T09:25:17",
"upload_time_iso_8601": "2024-09-02T09:25:17.259014Z",
"url": "https://files.pythonhosted.org/packages/92/e8/7a4cb529d2309fb6395d6153cf98406a5f4f8367129ccf2713cce1388a44/gradio_downloadgallery-0.0.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39452bcd882ed119ae401d4d53d55288a5b7fc988dfc552aaf52b5476712e0b2",
"md5": "0a584ac2865fa48c085be77663ff2fbc",
"sha256": "30c4c3ec949bde8ef2d7b6c76a447ac8689d020809fa0dd0be95df26e120ae92"
},
"downloads": -1,
"filename": "gradio_downloadgallery-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "0a584ac2865fa48c085be77663ff2fbc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 135325,
"upload_time": "2024-09-02T09:25:18",
"upload_time_iso_8601": "2024-09-02T09:25:18.854241Z",
"url": "https://files.pythonhosted.org/packages/39/45/2bcd882ed119ae401d4d53d55288a5b7fc988dfc552aaf52b5476712e0b2/gradio_downloadgallery-0.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-02 09:25:18",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "gradio-downloadgallery"
}