ComfyUI custom node for directly downloading generated images to your local PC with customizable filenames and formats (PNG/JPEG).
English | 日本語
This is a custom node for ComfyUI that allows you to directly download generated images to your local PC.
cd ComfyUI/custom_nodes
git clone https://github.com/your-username/comfyui_local_save.git
prefix
: Prefix for the file name to be saved (default: "generated")file_format
: Select the save format (PNG/JPEG)The file name of the saved image is generated in the following format:
{prefix}_{timestamp}_{number}.{ext}
Example:
generated_20250115_112814_001.png
generated_20250115_112814_002.png
prefix
: Prefix specified by the usertimestamp
: Timestamp in YYYYMMdd_HHmmss formatnumber
: 3-digit serial number starting from 001ext
: Selected format (png/jpeg)Dependencies:
torch>=2.0.0
Pillow>=9.0.0
numpy>=1.22.0
These packages are included in the standard ComfyUI installation.
Please submit bug reports and feature requests via GitHub Issues.