Compare commits

...

2 Commits

Author SHA1 Message Date
Andrés Zsögön
4add007769
Merge b2b498d466 into 2307ff6746 2025-01-08 21:06:08 -03:00
Andrés Zsögön
b2b498d466 Change Save Image default value
Set a more useful default filename for the **Save Image** node. Sample output path would be: **output/2025-01-07/190401_00001_.png**

Note thate "00001_" is a suffix added by ComfyUI itself.
2025-01-07 19:11:43 -03:00

View File

@ -1578,7 +1578,7 @@ class SaveImage:
return {
"required": {
"images": ("IMAGE", {"tooltip": "The images to save."}),
"filename_prefix": ("STRING", {"default": "ComfyUI", "tooltip": "The prefix for the file to save. This may include formatting information such as %date:yyyy-MM-dd% or %Empty Latent Image.width% to include values from nodes."})
"filename_prefix": ("STRING", {"default": "%date:yyyy-MM-dd%/%date:hhmmss%", "tooltip": "The prefix for the file to save. This may include formatting information such as %date:yyyy-MM-dd% or %Empty Latent Image.width% to include values from nodes."})
},
"hidden": {
"prompt": "PROMPT", "extra_pnginfo": "EXTRA_PNGINFO"