diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-11 21:20:05 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-11 21:20:05 +0000 |
commit | 303b75c1490e8f9e146ba207f3425a7f0317cb12 (patch) | |
tree | a130008842c294ddf240a4d58b84fc40f37d8fb3 | |
parent | 81d91cea29b8246ad0151fa89e37d6ef719b8b51 (diff) | |
download | stable-diffusion-webui-gfx803-303b75c1490e8f9e146ba207f3425a7f0317cb12.tar.gz stable-diffusion-webui-gfx803-303b75c1490e8f9e146ba207f3425a7f0317cb12.tar.bz2 stable-diffusion-webui-gfx803-303b75c1490e8f9e146ba207f3425a7f0317cb12.zip |
save sd upscales as samples not grids
-rw-r--r-- | modules/img2img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/img2img.py b/modules/img2img.py index e046b9a9..7461bad5 100644 --- a/modules/img2img.py +++ b/modules/img2img.py @@ -180,7 +180,7 @@ def img2img(prompt: str, negative_prompt: str, prompt_style: str, init_img, init result_images.append(combined_image)
if opts.samples_save:
- images.save_image(combined_image, p.outpath_samples, "", start_seed, prompt, opts.grid_format, info=initial_info)
+ images.save_image(combined_image, p.outpath_samples, "", start_seed, prompt, opts.samples_format, info=initial_info)
processed = Processed(p, result_images, seed, initial_info)
|