Extensions/Iterable Nodes
ComfyUI Extension

Iterable Nodes

ComfyUI custom nodes for iterable image and path workflows.

By mdl262·Created 4 months ago·Updated 4 months ago· 0
mdl262/ComfyUI-Iterable-Nodes
Nodes
On cloudLocal install
Stars0
Updated4 months ago
Readme

Iterable Nodes for ComfyUI

Small ComfyUI custom nodes for iterable image and path workflows.

Node

Save Iterable Images To Paths

Category: image/save

Inputs

  • images: A ComfyUI image or image batch.
  • save_paths: One path per image. This can be a multiline string or a list-like string.

Supported path formats:

C:/output/image_001.jpg
C:/output/image_002.jpg
C:/output/image_003.jpg
["C:/output/image_001.jpg", "C:/output/image_002.jpg", "C:/output/image_003.jpg"]

The number of paths must match the number of images in the batch.

Output

  • images: Passes the original images through.
  • saved_paths: Newline-separated paths that were written.

JPEG Quality

The node saves JPEGs with Pillow using:

quality=100
subsampling=0

JPEG is still a lossy format, even at quality 100. Use PNG or TIFF if you need mathematically lossless output.

Installation

Clone this repository into your ComfyUI custom_nodes folder:

cd C:/path/to/ComfyUI/custom_nodes
git clone https://github.com/mdl262/ComfyUI-Iterable-Nodes.git

Restart ComfyUI after installation.

Install With ComfyUI-Manager

After this package is published to the Comfy Registry, it can be installed from ComfyUI-Manager by searching for:

Iterable Nodes

Publish To Comfy Registry

This repository includes the required Registry metadata in pyproject.toml.

The Registry package id is:

iterable-nodes

That id is permanent after the first publish.

To publish manually:

comfy node publish

To publish from GitHub Actions, add a repository secret named REGISTRY_ACCESS_TOKEN with your Comfy Registry API key, then run the Publish to Comfy Registry workflow.

Official docs: https://docs.comfy.org/registry/publishing