mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-10 11:11:26 -08:00
fix OSError: cannot write mode P as JPEG
This commit is contained in:
parent
1da4907927
commit
3d2dbefcde
2 changed files with 2 additions and 2 deletions
|
|
@ -162,7 +162,7 @@ class State:
|
|||
errors.record_exception()
|
||||
|
||||
def assign_current_image(self, image):
|
||||
if shared.opts.live_previews_image_format == 'jpeg' and image.mode == 'RGBA':
|
||||
if shared.opts.live_previews_image_format == 'jpeg' and image.mode in ('RGBA', 'P'):
|
||||
image = image.convert('RGB')
|
||||
self.current_image = image
|
||||
self.id_live_preview += 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue