EasyUse/Imagegenerated
imagesSplitImage
The imagesSplitImage node takes an IMAGE tensor as its only input and returns five IMAGE outputs.
images Split Image
images
image1
image2
image3
image4
image5
Easy Use
The imagesSplitImage node takes an IMAGE tensor as its only input and returns five IMAGE outputs. It is a fixed-output utility for splitting a batch of images into separate image tensors, so each part can be routed to a different branch of the workflow. The node has no widgets or extra settings and appears in the EasyUse/Image category.
Inputs
- images (
IMAGE, required): A ComfyUI image tensor. The tensor’s first dimension is the batch dimension, so it may contain one image or a batch of images. This is the input thatimagesSplitImagedivides among its five outputs.
Outputs
The node always returns five IMAGE outputs. The source metadata gives them no explicit names, so they are identified by position in the ComfyUI UI:
- First
IMAGE - Second
IMAGE - Third
IMAGE - Fourth
IMAGE - Fifth
IMAGE
Each output is a normal image tensor and can be passed to any node that accepts an IMAGE input.
Usage Notes
- There are no input widgets, so the node requires no configuration beyond connecting
images. - Connect only the outputs required by the workflow; unused outputs can remain disconnected.
- When the input contains a batch of images, the node is useful for turning that batch into independent image outputs for separate processing paths.
- If you plan to use a particular output slot, make sure the upstream
imagesbatch actually contains that many images; otherwise the node’s behavior depends on how it indexes missing entries.
Comments
Sign in with GitHub to join the discussion.