gradio-imagemask


Namegradio-imagemask JSON
Version 0.0.1 PyPI version JSON
download
home_pageNone
SummarySimplified ImageEditor with disabled overlay of brush-options.
upload_time2024-05-13 12:30:04
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords brush editor gradio-custom-component gradio-template-imageeditor image imageeditor imagemask mask simple sketch sketchpad
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ---
tags: [gradio-custom-component, ImageEditor, image, mask, imagemask, editor, imageeditor, sketch, sketchpad, brush, simple]
title: gradio_imagemask
short_description: Simplified ImageEditor with disabled overlay of brush-options.
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---

# `gradio_imagemask`
<img alt="Static Badge" src="https://img.shields.io/badge/version%20-%200.0.1%20-%20orange">  

Simplified ImageEditor with disabled overlay of brush-options.

## Installation

```bash
pip install gradio_imagemask
```

## Usage

```python

import gradio as gr
from gradio_imagemask import ImageMask


example = ImageMask().example_value()

demo = gr.Interface(
    lambda x:x,
    ImageMask(),  # interactive version of your component
    ImageMask(),  # static version of your component
    # examples=[[example]],  # uncomment this line to view the "example version" of your component
)


if __name__ == "__main__":
    demo.launch()

```

## `ImageMask`

### 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
EditorValue | numpy.ndarray | PIL.Image.Image | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">Optional initial image(s) to populate the image editor. Should be a dictionary with keys: `background`, `layers`, and `composite`. The values corresponding to `background` and `composite` should be images or None, while `layers` should be a list of images. Images can be of type PIL.Image, np.array, or str filepath/URL. Or, the value can be a callable, in which case the function will be called whenever the app loads to set the initial value of the component.</td>
</tr>

<tr>
<td align="left"><code>height</code></td>
<td align="left" style="width: 25%;">

```python
int | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The height of the component container, specified in pixels if a number is passed, or in CSS units if a string is passed.</td>
</tr>

<tr>
<td align="left"><code>width</code></td>
<td align="left" style="width: 25%;">

```python
int | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The width of the component container, specified in pixels if a number is passed, or in CSS units if a string is passed.</td>
</tr>

<tr>
<td align="left"><code>image_mode</code></td>
<td align="left" style="width: 25%;">

```python
"1"
    | "L"
    | "P"
    | "RGB"
    | "RGBA"
    | "CMYK"
    | "YCbCr"
    | "LAB"
    | "HSV"
    | "I"
    | "F"
```

</td>
<td align="left"><code>"RGBA"</code></td>
<td align="left">"RGB" if color, or "L" if black and white. See https://pillow.readthedocs.io/en/stable/handbook/concepts.html for other supported image modes and their meaning.</td>
</tr>

<tr>
<td align="left"><code>sources</code></td>
<td align="left" style="width: 25%;">

```python
Iterable["upload" | "webcam" | "clipboard"] | None
```

</td>
<td align="left"><code>"upload"</code></td>
<td align="left">List of sources that can be used to set the background image. "upload" creates a box where user can drop an image file, "webcam" allows user to take snapshot from their webcam, "clipboard" allows users to paste an image from the clipboard.</td>
</tr>

<tr>
<td align="left"><code>type</code></td>
<td align="left" style="width: 25%;">

```python
"numpy" | "pil" | "filepath"
```

</td>
<td align="left"><code>"numpy"</code></td>
<td align="left">The format the images are converted to before being passed into the prediction function. "numpy" converts the images to numpy arrays with shape (height, width, 3) and values from 0 to 255, "pil" converts the images to PIL image objects, "filepath" passes images as str filepaths to temporary copies of the images.</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
float | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If `value` is a callable, run the function 'every' number of seconds while the client connection is open. Has no effect otherwise. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</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>show_download_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 display button to download image.</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>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, will allow users to upload and edit an image; if False, can only be used to display images. If not provided, this is inferred based on whether the component is used as an input or output.</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>mirror_webcam</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If True webcam will be mirrored. Default is True.</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>_selectable</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>False</code></td>
<td align="left">None</td>
</tr>

<tr>
<td align="left"><code>crop_size</code></td>
<td align="left" style="width: 25%;">

```python
tuple[int | float, int | float] | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The size of the crop box in pixels. If a tuple, the first value is the width and the second value is the height. If a string, the value must be a ratio in the form `width:height` (e.g. "16:9").</td>
</tr>

<tr>
<td align="left"><code>transforms</code></td>
<td align="left" style="width: 25%;">

```python
Iterable["crop"]
```

</td>
<td align="left"><code></code></td>
<td align="left">The transforms tools to make available to users. "crop" allows the user to crop the image.</td>
</tr>

<tr>
<td align="left"><code>eraser</code></td>
<td align="left" style="width: 25%;">

```python
Eraser | None | False
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The options for the eraser tool in the image editor. Should be an instance of the `gr.Eraser` class, or None to use the default settings. Can also be False to hide the eraser tool.</td>
</tr>

<tr>
<td align="left"><code>brush</code></td>
<td align="left" style="width: 25%;">

```python
Brush | None | False
```

</td>
<td align="left"><code>Brush(
    default_size="auto",
    colors=["#000000"],
    default_color="auto",
    color_mode="fixed",
)</code></td>
<td align="left">The options for the brush tool in the image editor. Should be an instance of the `gr.Brush` class, or None to use the default settings. Can also be False to hide the brush tool, which will also hide the eraser tool.</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 image if it does not already have a valid format (e.g. if the image is being returned to the frontend as a numpy array or PIL Image).  The format should be supported by the PIL library. This parameter has no effect on SVG files.</td>
</tr>

<tr>
<td align="left"><code>layers</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>False</code></td>
<td align="left">If True, will allow users to add layers to the image. If False, the layers option will be hidden.</td>
</tr>

<tr>
<td align="left"><code>canvas_size</code></td>
<td align="left" style="width: 25%;">

```python
tuple[int, int] | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The size of the default canvas in pixels. If a tuple, the first value is the width and the second value is the height. If None, the canvas size will be the same as the background image or 800 x 600 if no background image is provided.</td>
</tr>
</tbody></table>


### Events

| name | description |
|:-----|:------------|
| `clear` | This listener is triggered when the user clears the ImageMask using the X button for the component. |
| `change` | Triggered when the value of the ImageMask 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. |
| `input` | This listener is triggered when the user changes the value of the ImageMask. |
| `select` | Event listener for when the user selects or deselects the ImageMask. Uses event data gradio.SelectData to carry `value` referring to the label of the ImageMask, and `selected` to refer to state of the ImageMask. See EventData documentation on how to use this event data |
| `upload` | This listener is triggered when the user uploads a file into the ImageMask. |
| `apply` | This listener is triggered when the user applies changes to the ImageMask through an integrated UI action. |



### 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 uploaded images as an instance of EditorValue, which is just a `dict` with keys: 'background', 'layers', and 'composite'. The values corresponding to 'background' and 'composite' are images, while 'layers' is a `list` of images. The images are of type `PIL.Image`, `np.array`, or `str` filepath, depending on the `type` parameter.
- **As input:** Should return, expects a EditorValue, which is just a dictionary with keys: 'background', 'layers', and 'composite'. The values corresponding to 'background' and 'composite' should be images or None, while `layers` should be a list of images. Images can be of type `PIL.Image`, `np.array`, or `str` filepath/URL. Or, the value can be simply a single image (`ImageType`), in which case it will be used as the background.

 ```python
 def predict(
     value: EditorValue | None
 ) -> EditorValue | numpy.ndarray | PIL.Image.Image | str | None:
     return value
 ```
 

## `EditorValue`
```python
class EditorValue(TypedDict):
    background: Optional[ImageType]
    layers: list[ImageType]
    composite: Optional[ImageType]
```

## `Eraser`
```python
@dataclasses.dataclass
class Eraser:
    default_size: int | Literal["auto"] = "auto"
```

## `Brush`
```python
@dataclasses.dataclass
class Brush(Eraser):
    colors: Union[
        list[str],
        str,
        None,
    ] = None
    default_color: Union[str, Literal["auto"]] = "auto"
    color_mode: Literal["fixed", "defaults"] = "defaults"

    def __post_init__(self):
        if self.colors is None:
            self.colors = [
                "rgb(204, 50, 50)",
                "rgb(173, 204, 50)",
                "rgb(50, 204, 112)",
                "rgb(50, 112, 204)",
                "rgb(173, 50, 204)",
            ]
        if self.default_color is None:
            self.default_color = (
                self.colors[0]
                if isinstance(self.colors, list)
                else self.colors
            )
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gradio-imagemask",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "brush, editor, gradio-custom-component, gradio-template-ImageEditor, image, imageeditor, imagemask, mask, simple, sketch, sketchpad",
    "author": null,
    "author_email": "YOUR NAME <YOUREMAIL@domain.com>",
    "download_url": "https://files.pythonhosted.org/packages/74/9a/5f51d3e32e41e68da185e03d3b9e4ba5fce0d31882a95e87148659c3b0a6/gradio_imagemask-0.0.1.tar.gz",
    "platform": null,
    "description": "---\ntags: [gradio-custom-component, ImageEditor, image, mask, imagemask, editor, imageeditor, sketch, sketchpad, brush, simple]\ntitle: gradio_imagemask\nshort_description: Simplified ImageEditor with disabled overlay of brush-options.\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_imagemask`\n<img alt=\"Static Badge\" src=\"https://img.shields.io/badge/version%20-%200.0.1%20-%20orange\">  \n\nSimplified ImageEditor with disabled overlay of brush-options.\n\n## Installation\n\n```bash\npip install gradio_imagemask\n```\n\n## Usage\n\n```python\n\nimport gradio as gr\nfrom gradio_imagemask import ImageMask\n\n\nexample = ImageMask().example_value()\n\ndemo = gr.Interface(\n    lambda x:x,\n    ImageMask(),  # interactive version of your component\n    ImageMask(),  # static version of your component\n    # examples=[[example]],  # uncomment this line to view the \"example version\" of your component\n)\n\n\nif __name__ == \"__main__\":\n    demo.launch()\n\n```\n\n## `ImageMask`\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\nEditorValue | numpy.ndarray | PIL.Image.Image | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Optional initial image(s) to populate the image editor. Should be a dictionary with keys: `background`, `layers`, and `composite`. The values corresponding to `background` and `composite` should be images or None, while `layers` should be a list of images. Images can be of type PIL.Image, np.array, or str filepath/URL. Or, the value can be a callable, in which case 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>height</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\">The height of the component container, specified in pixels if a number is passed, or in CSS units if a string is passed.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>width</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\">The width of the component container, specified in pixels if a number is passed, or in CSS units if a string is passed.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>image_mode</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\n\"1\"\n    | \"L\"\n    | \"P\"\n    | \"RGB\"\n    | \"RGBA\"\n    | \"CMYK\"\n    | \"YCbCr\"\n    | \"LAB\"\n    | \"HSV\"\n    | \"I\"\n    | \"F\"\n```\n\n</td>\n<td align=\"left\"><code>\"RGBA\"</code></td>\n<td align=\"left\">\"RGB\" if color, or \"L\" if black and white. See https://pillow.readthedocs.io/en/stable/handbook/concepts.html for other supported image modes and their meaning.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>sources</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nIterable[\"upload\" | \"webcam\" | \"clipboard\"] | None\n```\n\n</td>\n<td align=\"left\"><code>\"upload\"</code></td>\n<td align=\"left\">List of sources that can be used to set the background image. \"upload\" creates a box where user can drop an image file, \"webcam\" allows user to take snapshot from their webcam, \"clipboard\" allows users to paste an image from the clipboard.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\n\"numpy\" | \"pil\" | \"filepath\"\n```\n\n</td>\n<td align=\"left\"><code>\"numpy\"</code></td>\n<td align=\"left\">The format the images are converted to before being passed into the prediction function. \"numpy\" converts the images to numpy arrays with shape (height, width, 3) and values from 0 to 255, \"pil\" converts the images to PIL image objects, \"filepath\" passes images as str filepaths to temporary copies of the images.</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\nfloat | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If `value` is a callable, run the function 'every' number of seconds while the client connection is open. Has no effect otherwise. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</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>show_download_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 display button to download image.</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>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, will allow users to upload and edit an image; if False, can only be used to display images. If not provided, this is inferred based on whether the component is used as an input or output.</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>mirror_webcam</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 webcam will be mirrored. Default is True.</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>_selectable</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>False</code></td>\n<td align=\"left\">None</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>crop_size</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\ntuple[int | float, int | float] | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The size of the crop box in pixels. If a tuple, the first value is the width and the second value is the height. If a string, the value must be a ratio in the form `width:height` (e.g. \"16:9\").</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>transforms</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nIterable[\"crop\"]\n```\n\n</td>\n<td align=\"left\"><code></code></td>\n<td align=\"left\">The transforms tools to make available to users. \"crop\" allows the user to crop the image.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>eraser</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nEraser | None | False\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The options for the eraser tool in the image editor. Should be an instance of the `gr.Eraser` class, or None to use the default settings. Can also be False to hide the eraser tool.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>brush</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nBrush | None | False\n```\n\n</td>\n<td align=\"left\"><code>Brush(\n    default_size=\"auto\",\n    colors=[\"#000000\"],\n    default_color=\"auto\",\n    color_mode=\"fixed\",\n)</code></td>\n<td align=\"left\">The options for the brush tool in the image editor. Should be an instance of the `gr.Brush` class, or None to use the default settings. Can also be False to hide the brush tool, which will also hide the eraser tool.</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 image if it does not already have a valid format (e.g. if the image is being returned to the frontend as a numpy array or PIL Image).  The format should be supported by the PIL library. This parameter has no effect on SVG files.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>layers</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>False</code></td>\n<td align=\"left\">If True, will allow users to add layers to the image. If False, the layers option will be hidden.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>canvas_size</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\ntuple[int, int] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The size of the default canvas in pixels. If a tuple, the first value is the width and the second value is the height. If None, the canvas size will be the same as the background image or 800 x 600 if no background image is provided.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `clear` | This listener is triggered when the user clears the ImageMask using the X button for the component. |\n| `change` | Triggered when the value of the ImageMask 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| `input` | This listener is triggered when the user changes the value of the ImageMask. |\n| `select` | Event listener for when the user selects or deselects the ImageMask. Uses event data gradio.SelectData to carry `value` referring to the label of the ImageMask, and `selected` to refer to state of the ImageMask. See EventData documentation on how to use this event data |\n| `upload` | This listener is triggered when the user uploads a file into the ImageMask. |\n| `apply` | This listener is triggered when the user applies changes to the ImageMask through an integrated UI action. |\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 uploaded images as an instance of EditorValue, which is just a `dict` with keys: 'background', 'layers', and 'composite'. The values corresponding to 'background' and 'composite' are images, while 'layers' is a `list` of images. The images are of type `PIL.Image`, `np.array`, or `str` filepath, depending on the `type` parameter.\n- **As input:** Should return, expects a EditorValue, which is just a dictionary with keys: 'background', 'layers', and 'composite'. The values corresponding to 'background' and 'composite' should be images or None, while `layers` should be a list of images. Images can be of type `PIL.Image`, `np.array`, or `str` filepath/URL. Or, the value can be simply a single image (`ImageType`), in which case it will be used as the background.\n\n ```python\n def predict(\n     value: EditorValue | None\n ) -> EditorValue | numpy.ndarray | PIL.Image.Image | str | None:\n     return value\n ```\n \n\n## `EditorValue`\n```python\nclass EditorValue(TypedDict):\n    background: Optional[ImageType]\n    layers: list[ImageType]\n    composite: Optional[ImageType]\n```\n\n## `Eraser`\n```python\n@dataclasses.dataclass\nclass Eraser:\n    default_size: int | Literal[\"auto\"] = \"auto\"\n```\n\n## `Brush`\n```python\n@dataclasses.dataclass\nclass Brush(Eraser):\n    colors: Union[\n        list[str],\n        str,\n        None,\n    ] = None\n    default_color: Union[str, Literal[\"auto\"]] = \"auto\"\n    color_mode: Literal[\"fixed\", \"defaults\"] = \"defaults\"\n\n    def __post_init__(self):\n        if self.colors is None:\n            self.colors = [\n                \"rgb(204, 50, 50)\",\n                \"rgb(173, 204, 50)\",\n                \"rgb(50, 204, 112)\",\n                \"rgb(50, 112, 204)\",\n                \"rgb(173, 50, 204)\",\n            ]\n        if self.default_color is None:\n            self.default_color = (\n                self.colors[0]\n                if isinstance(self.colors, list)\n                else self.colors\n            )\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Simplified ImageEditor with disabled overlay of brush-options.",
    "version": "0.0.1",
    "project_urls": null,
    "split_keywords": [
        "brush",
        " editor",
        " gradio-custom-component",
        " gradio-template-imageeditor",
        " image",
        " imageeditor",
        " imagemask",
        " mask",
        " simple",
        " sketch",
        " sketchpad"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "314cad0fabf69e0ec69d8d87be77eb69360e8654eef03c6c34020b8d99285319",
                "md5": "fdda3b15973bf8b1440a6e68f849366a",
                "sha256": "766c57cb13ef72923d4a7bf472127ddcf6bf4a119c45e8de3e96d928c686ed69"
            },
            "downloads": -1,
            "filename": "gradio_imagemask-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fdda3b15973bf8b1440a6e68f849366a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 335302,
            "upload_time": "2024-05-13T12:30:01",
            "upload_time_iso_8601": "2024-05-13T12:30:01.304880Z",
            "url": "https://files.pythonhosted.org/packages/31/4c/ad0fabf69e0ec69d8d87be77eb69360e8654eef03c6c34020b8d99285319/gradio_imagemask-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "749a5f51d3e32e41e68da185e03d3b9e4ba5fce0d31882a95e87148659c3b0a6",
                "md5": "712f569628119e0a3a031d93227a2477",
                "sha256": "af6ae0d1622c479ab77ffa4dc496d0b06b7337effef1d61b8f2f428592341e5e"
            },
            "downloads": -1,
            "filename": "gradio_imagemask-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "712f569628119e0a3a031d93227a2477",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 408281,
            "upload_time": "2024-05-13T12:30:04",
            "upload_time_iso_8601": "2024-05-13T12:30:04.663380Z",
            "url": "https://files.pythonhosted.org/packages/74/9a/5f51d3e32e41e68da185e03d3b9e4ba5fce0d31882a95e87148659c3b0a6/gradio_imagemask-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-13 12:30:04",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gradio-imagemask"
}
        
Elapsed time: 0.48360s