




20250301 Update
Added For loop batch processing images, background removal example
20250210 Update
Added two interfaces
1. Batch image From imageList
Convert the image list in the zip package into a standard image Batch object in comfyui for convenient use.
The method of use is indexing, or you can take a range like 0 100.
There is a drawback to this method: when the images in the zip package are of inconsistent sizes, smaller images will have black borders added
because the comfyui Batch object requires that each image must be the same size.
2. Extract Image From ImageList
Extract a specific image from the image list in the zip package based on the index.
Convenient for use in a for loop.
- How to process multiple photos at once on runninghub?
- How to use multiple images as input and process them in batches?
- How to process all images in a directory in a single stream?
If you have similar questions, please refer to this example
Mainly divided into three steps
1. Add an "rhuploadzip" node
2. Compress all the images to be processed into a zip package
3. Click to upload this zip package, wait for the upload to complete, and the node will display success
Next, refer to this example, and it should be very clear
```20250301 Update
Added For loop batch processing images, background removal example
20250210 Update
Added two interfaces
1. Batch image From imageList
Convert the image list in the zip package into a standard image Batch object in comfyui for convenient use.
The method of use is indexing, or you can take a range like 0 100.
There is a drawback to this method: when the images in the zip package are of inconsistent sizes, smaller images will have black borders added
because the comfyui Batch object requires that each image must be the same size.
2. Extract Image From ImageList
Extract a specific image from the image list in the zip package based on the index.
Convenient for use in a for loop.
- How to process multiple photos at once on runninghub?
- How to use multiple images as input and process them in batches?
- How to process all images in a directory in a single stream?
If you have similar questions, please refer to this example
Mainly divided into three steps
1. Add an "rhuploadzip" node
2. Compress all the images to be processed into a zip package
3. Click to upload this zip package, wait for the upload to complete, and the node will display success
Next, refer to this example, and it should be very clear
```