diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-05-31 21:24:37 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-05-31 21:24:37 +0000 |
commit | 72f6367b9b34a1aa3f8743f4d9c2407bb9d2afeb (patch) | |
tree | 094e693979a57d2e88d6a056abb6872dc6fca6ba /modules/images.py | |
parent | 8a561d94e67bc7ce2454172bc238007a8ee99a0d (diff) | |
download | stable-diffusion-webui-gfx803-72f6367b9b34a1aa3f8743f4d9c2407bb9d2afeb.tar.gz stable-diffusion-webui-gfx803-72f6367b9b34a1aa3f8743f4d9c2407bb9d2afeb.tar.bz2 stable-diffusion-webui-gfx803-72f6367b9b34a1aa3f8743f4d9c2407bb9d2afeb.zip |
fix 10896 pnginfo parameters
Diffstat (limited to 'modules/images.py')
-rw-r--r-- | modules/images.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/images.py b/modules/images.py index 30e9ffc5..0760284b 100644 --- a/modules/images.py +++ b/modules/images.py @@ -504,8 +504,6 @@ def save_image_with_geninfo(image, geninfo, filename, extension=None, existing_p image_format = Image.registered_extensions()[extension]
existing_pnginfo = existing_pnginfo or {}
- if opts.enable_pnginfo:
- existing_pnginfo['parameters'] = geninfo
if extension.lower() == '.png':
if opts.enable_pnginfo:
|