aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-09-08 05:09:28 +0000
committerGitHub <noreply@github.com>2022-09-08 05:09:28 +0000
commit0959fa2d027e7a093adb3cfab9be2343ec7348e2 (patch)
treea8ab138b26d5b83d25c8bb3b7a928a71eda828e6 /modules/ui.py
parent782b819a553404f43b67fe1ca19afd5678af4834 (diff)
parent7045c846435cf5c9547729c60e85c386e78c90ed (diff)
downloadstable-diffusion-webui-gfx803-0959fa2d027e7a093adb3cfab9be2343ec7348e2.tar.gz
stable-diffusion-webui-gfx803-0959fa2d027e7a093adb3cfab9be2343ec7348e2.tar.bz2
stable-diffusion-webui-gfx803-0959fa2d027e7a093adb3cfab9be2343ec7348e2.zip
Merge pull request #124 from fuzzytent/alpha-mask
Also use alpha channel from img2img input image as mask
Diffstat (limited to 'modules/ui.py')
-rw-r--r--modules/ui.py2
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)