Commit 9c91a867 authored by AUTOMATIC1111's avatar AUTOMATIC1111 Committed by GitHub

Merge pull request #10395 from wk5ovc/patch-4

Fix extra networks save preview image geninfo
parents 6b51cc75 f517838c
...@@ -344,9 +344,19 @@ def setup_ui(ui, gallery): ...@@ -344,9 +344,19 @@ def setup_ui(ui, gallery):
assert is_allowed, f'writing to {filename} is not allowed' assert is_allowed, f'writing to {filename} is not allowed'
if geninfo: if geninfo:
pnginfo_data = PngImagePlugin.PngInfo() ext = os.path.splitext(filename)[1].lower()
pnginfo_data.add_text('parameters', geninfo) if ext == '.png':
image.save(filename, pnginfo=pnginfo_data) pnginfo_data = PngImagePlugin.PngInfo()
pnginfo_data.add_text('parameters', geninfo)
image.save(filename, pnginfo=pnginfo_data)
elif ext in ('.jpg', '.jpeg', '.webp'):
exif_bytes = piexif.dump({
'Exif': {piexif.ExifIFD.UserComment: piexif.helper.UserComment.dump(geninfo or '',
encoding='unicode')}
})
image.save(filename, exif=exif_bytes, quality=shared.opts.jpeg_quality)
else:
image.save(filename)
else: else:
image.save(filename) image.save(filename)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment