mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
Lower compress level of png sent on websocket.
This commit is contained in:
parent
983ebc5792
commit
21063fa35b
@ -576,7 +576,7 @@ class PromptServer():
|
|||||||
bytesIO = BytesIO()
|
bytesIO = BytesIO()
|
||||||
header = struct.pack(">I", type_num)
|
header = struct.pack(">I", type_num)
|
||||||
bytesIO.write(header)
|
bytesIO.write(header)
|
||||||
image.save(bytesIO, format=image_type, quality=95, compress_level=4)
|
image.save(bytesIO, format=image_type, quality=95, compress_level=1)
|
||||||
preview_bytes = bytesIO.getvalue()
|
preview_bytes = bytesIO.getvalue()
|
||||||
await self.send_bytes(BinaryEventTypes.PREVIEW_IMAGE, preview_bytes, sid=sid)
|
await self.send_bytes(BinaryEventTypes.PREVIEW_IMAGE, preview_bytes, sid=sid)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user