Visit ComfyUI Online for ready-to-use ComfyUI environment
Merge two images vertically for AI artists to create composite images efficiently using PyTorch tensors.
The ImageCombine node is designed to seamlessly merge two images into a single output. This node is particularly useful for AI artists who want to create composite images by stacking one image on top of another. The primary function of this node is to concatenate the input images along the vertical axis, resulting in a combined image that retains the full height of both input images. This can be especially beneficial for creating panoramic views, extended canvases, or any artistic composition that requires the integration of multiple images. By leveraging the power of PyTorch tensors, the ImageCombine node ensures efficient and high-quality image processing, making it an essential tool for creative projects.
The first image to be combined. This parameter accepts an image tensor, which represents the initial part of the final combined image. The quality and resolution of this image will directly impact the output, so it is recommended to use high-resolution images for the best results.
The second image to be combined. Similar to image_1
, this parameter also accepts an image tensor. This image will be concatenated below the first image, forming the bottom part of the final combined image. Ensuring that this image matches the resolution and quality of image_1
will help maintain a consistent and visually appealing output.
The combined image resulting from the concatenation of image_1
and image_2
. This output is a single image tensor that integrates both input images along the vertical axis. The final image retains the full height of both input images, making it ideal for creating extended or composite visuals.
image_1
and image_2
) have the same width to avoid any alignment issues in the final combined image.image_1
and image_2
have the same width before feeding them into the node. You can use image editing software or other nodes to resize the images accordingly.image_1
and image_2
are valid image tensors. Ensure that the images are properly loaded and converted to tensors before using them as inputs.© Copyright 2024 RunComfy. All Rights Reserved.