diff options
author | fuzzytent <fuzzy.tent6960@fastmail.com> | 2022-09-07 20:37:54 +0000 |
---|---|---|
committer | fuzzytent <fuzzy.tent6960@fastmail.com> | 2022-09-07 20:37:54 +0000 |
commit | 7045c846435cf5c9547729c60e85c386e78c90ed (patch) | |
tree | d0f53a53cc1b9572e10d7accb6a94a52985d4451 /modules/ui.py | |
parent | 296d012423f8d1862a63680443bb88b7d904ba4e (diff) | |
download | stable-diffusion-webui-gfx803-7045c846435cf5c9547729c60e85c386e78c90ed.tar.gz stable-diffusion-webui-gfx803-7045c846435cf5c9547729c60e85c386e78c90ed.tar.bz2 stable-diffusion-webui-gfx803-7045c846435cf5c9547729c60e85c386e78c90ed.zip |
Also use alpha channel from img2img input image as mask
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index f5564d0e..b1a8c776 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -323,7 +323,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): with gr.Group():
switch_mode = gr.Radio(label='Mode', elem_id="img2img_mode", choices=['Redraw whole image', 'Inpaint a part of image', 'Loopback', 'SD upscale'], value='Redraw whole image', type="index", show_label=False)
init_img = gr.Image(label="Image for img2img", source="upload", interactive=True, type="pil")
- init_img_with_mask = gr.Image(label="Image for inpainting with mask", elem_id="img2maskimg", source="upload", interactive=True, type="pil", tool="sketch", visible=False)
+ init_img_with_mask = gr.Image(label="Image for inpainting with mask", elem_id="img2maskimg", source="upload", interactive=True, type="pil", tool="sketch", visible=False, image_mode="RGBA")
resize_mode = gr.Radio(label="Resize mode", show_label=False, choices=["Just resize", "Crop and resize", "Resize and fill"], type="index", value="Just resize")
steps = gr.Slider(minimum=1, maximum=150, step=1, label="Sampling Steps", value=20)
|