Commit ca5901b5 authored by Justin Maier's avatar Justin Maier Committed by AUTOMATIC1111

Save should use desired sample format fixes #1028

parent dc1ee79e
......@@ -114,7 +114,7 @@ def save_files(js_data, images, index):
filename_base = str(int(time.time() * 1000))
for i, filedata in enumerate(images):
filename = filename_base + ("" if len(images) == 1 else "-" + str(i + 1)) + ".png"
filename = filename_base + ("" if len(images) == 1 else "-" + str(i + 1)) + f".{opts.samples_format}"
filepath = os.path.join(opts.outdir_save, filename)
if filedata.startswith("data:image/png;base64,"):
......
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