Visit ComfyUI Online for ready-to-use ComfyUI environment
Automate batch saving of image sequences with customizable file paths and handling options for AI artists.
The JWSaveImageSequence node is designed to facilitate the batch saving of image sequences to specified file paths. This node is particularly useful for AI artists who need to save multiple images generated during a creative process efficiently. By automating the saving process, it ensures that each image in the sequence is stored correctly and can be easily retrieved later. The node supports customizable file path patterns and offers options to handle existing files, making it a versatile tool for managing large sets of images.
This parameter expects a tensor of images that you want to save. Each image in the tensor will be processed and saved according to the specified path pattern. The images should be in a format compatible with the saving function used by the node.
This string parameter defines the pattern for the file paths where the images will be saved. You can use placeholders like {}
or {i}
to dynamically insert the image index into the file name. This allows for organized and sequential naming of the saved images.
This integer parameter specifies the starting index for naming the saved images. The index will increment for each subsequent image in the sequence. The default value is 0, and it should be a non-negative integer.
This parameter is a string that determines whether existing files should be overwritten. It accepts two values: "true"
and "false"
. If set to "true"
, any existing files with the same name will be overwritten. If set to "false"
, the node will generate a non-conflicting path to avoid overwriting existing files.
This optional parameter allows you to include a prompt or description that will be saved with each image. This can be useful for keeping track of the context or settings used to generate the images.
This optional parameter allows you to include additional metadata in the PNG files. This can be useful for storing extra information about the images, such as generation parameters or other relevant data.
This node does not produce any output parameters. Its primary function is to save the provided images to the specified file paths.
path_pattern
includes placeholders for the image index to avoid overwriting files unintentionally.overwrite
parameter wisely to prevent accidental loss of existing files. Set it to "false"
if you want to keep existing files intact.prompt
and extra_pnginfo
parameters to store additional information with your images, which can be helpful for future reference or reproduction of results.<path>
overwrite
parameter is set to "false"
.overwrite
parameter to "true"
to allow overwriting of existing files or ensure that the path_pattern
generates unique file names for each image.© Copyright 2024 RunComfy. All Rights Reserved.