Merge c21be9601e5573c60f56907d959e714271eab47a into 374bb6cc384d2a19422c0b07d69de0a41d1f3f4d

This commit is contained in:
Andray 2025-03-06 23:16:52 +08:00 committed by GitHub
commit 6d35f95513
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

View File

@ -65,8 +65,19 @@ def apply_color_correction(correction, original_image):
def uncrop(image, dest_size, paste_loc):
x, y, w, h = paste_loc
base_image = Image.new('RGBA', dest_size)
if image.width > shared.opts.img2img_inpaint_correct_paste_xy_side_length_threshold:
paste_x = max(x - w // image.width, 0)
else:
paste_x = x
if image.height > shared.opts.img2img_inpaint_correct_paste_xy_side_length_threshold:
paste_y = max(y - h // image.height, 0)
else:
paste_y = y
image = images.resize_image(1, image, w, h)
base_image.paste(image, (x, y))
base_image.paste(image, (paste_x, paste_y))
image = base_image
return image

View File

@ -228,6 +228,7 @@ options_templates.update(options_section(('img2img', "img2img", "sd"), {
"return_mask_composite": OptionInfo(False, "For inpainting, include masked composite in results for web"),
"img2img_batch_show_results_limit": OptionInfo(32, "Show the first N batch img2img results in UI", gr.Slider, {"minimum": -1, "maximum": 1000, "step": 1}).info('0: disable, -1: show all images. Too many images can cause lag'),
"overlay_inpaint": OptionInfo(True, "Overlay original for inpaint").info("when inpainting, overlay the original image over the areas that weren't inpainted."),
"img2img_inpaint_correct_paste_xy_side_length_threshold": OptionInfo(400, "If a side of generation resolution is bigger then the threshold, paste_xy will be corrected in only masked mode to fix shifting. The bigger resolution means less details are lost in downscaling step", gr.Slider, {"minimum": 0, "maximum": 1000, "step": 1}),
}))
options_templates.update(options_section(('optimizations', "Optimizations", "sd"), {