Spaces:
Running
on
Zero
Running
on
Zero
possible fix for low quality downloads
Browse filesattempting to make the outputs download as png rather than webp but I can't test this as I don't have a pro subscription.
got the potential fix from https://huggingface.co/spaces/multimodalart/flux-lora-the-explorer/discussions/8
app.py
CHANGED
@@ -359,6 +359,7 @@ with gr.Blocks(css=css) as demo:
|
|
359 |
result = ImageSlider(
|
360 |
interactive=False,
|
361 |
label="Generated Image",
|
|
|
362 |
)
|
363 |
use_as_input_button = gr.Button("Use as Input Image", visible=False)
|
364 |
|
|
|
359 |
result = ImageSlider(
|
360 |
interactive=False,
|
361 |
label="Generated Image",
|
362 |
+
format="png")
|
363 |
)
|
364 |
use_as_input_button = gr.Button("Use as Input Image", visible=False)
|
365 |
|