aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-10-09 13:10:15 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-10-09 13:10:15 +0300
commitbd833409ac7b8337040d521f6b65ced51e1b2ea8 (patch)
tree9958b09f09d94645c80e4ad693d036054892cdd7
parent0609ce06c0778536cb368ac3867292f87c6d9fc7 (diff)
additional changes for saving pnginfo for #1803
-rw-r--r--modules/extras.py4
-rw-r--r--modules/processing.py6
2 files changed, 8 insertions, 2 deletions
diff --git a/modules/extras.py b/modules/extras.py
index ef6e6de7..39dd3806 100644
--- a/modules/extras.py
+++ b/modules/extras.py
@@ -98,6 +98,10 @@ def run_extras(extras_mode, image, image_folder, gfpgan_visibility, codeformer_v
no_prompt=True, grid=False, pnginfo_section_name="extras", existing_info=existing_pnginfo,
forced_filename=image_name if opts.use_original_name_batch else None)
+ if opts.enable_pnginfo:
+ image.info = existing_pnginfo
+ image.info["extras"] = info
+
outputs.append(image)
devices.torch_gc()
diff --git a/modules/processing.py b/modules/processing.py
index 7fa1144e..2c991317 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -451,7 +451,8 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
text = infotext(n, i)
infotexts.append(text)
- image.info["parameters"] = text
+ if opts.enable_pnginfo:
+ image.info["parameters"] = text
output_images.append(image)
del x_samples_ddim
@@ -470,7 +471,8 @@ def process_images(p: StableDiffusionProcessing) -> Processed:
if opts.return_grid:
text = infotext()
infotexts.insert(0, text)
- grid.info["parameters"] = text
+ if opts.enable_pnginfo:
+ grid.info["parameters"] = text
output_images.insert(0, grid)
index_of_first_image = 1