ComfyUI Extension: Image Misc
Miscellaneous nodes for image manipulation. Currently just download image with bypass, so you can create workflows including image examples. No extra dependencies, just an internal module.
Custom Nodes (0)
README
ComfyUI Image Miscellaneous Nodes 🎨
This repository provides a set of custom nodes for ComfyUI focused on image manipulation. Currently we just have a few nodes used by other nodes I maintain.
⚙️ Main features
✅ No bizarre extra dependencies, we use the same modules as ComfyUI
✅ Warnings and errors visible in the browser, configurable debug information in the console
📜 Table of Contents
- 🚀 Installation
- 📦 Dependencies
- 🖼️ Examples
- ✨ Nodes
- Foreground: (Foreground estimation)
- Generation:
- Input/Output:
- Manipulation:
- Normalization:
- 📝 Usage Notes
- 📜 Project History
- ⚖️ License
- 🙏 Attributions
✨ Nodes
The nodes are documented here. Use the above ToC to access them by category.
🚀 Installation
You can install the nodes from the ComfyUI nodes manager, the name is Image Misc, or just do it manually:
- Clone this repository into your
ComfyUI/custom_nodes/directory:cd ComfyUI/custom_nodes/ git clone https://github.com/set-soft/ComfyUI-ImageMisc ComfyUI-ImageMisc - Install dependencies:
pip install -r ComfyUI/custom_nodes/ComfyUI-ImageMisc/requirements.txt - Restart ComfyUI.
The nodes should then appear under the "image/io", "image/manipulation", "image/normalization" and "image/foreground" categories in the "Add Node" menu.
📦 Dependencies
- SeCoNoHe (seconohe): This is just some functionality I wrote shared by my nodes, only depends on ComfyUI.
- PyTorch: Installed by ComfyUI
- NumPy: Installed by ComfyUI
- Pillow: Installed by ComfyUI
- Requests (optional): Usually an indirect ComfyUI dependency. If installed it will be used for downloads, it should be more robust than then built-in
urllib, used as fallback. - Colorama (optional): Might help to get colored log messages on some terminals. We use ANSI escape sequences when it isn't installed.
🖼️ Examples
Once installed the examples are available in the ComfyUI workflow templates, in the Image Misc section (or ComfyUI-ImageMisc).
image_download.json
Shows how to use the image downloader node.
resize.json
Shows the most common uses of the resize and padding nodes. You can see how various modes and options affects the result and how the different interpolation methods works. It shows how masks and RGBA images are handled.
📝 Usage Notes
- Logging: 🔊 The nodes use Python's
loggingmodule. Debug messages can be helpful for understanding the transformations being applied. You can control log verbosity through ComfyUI's startup arguments (e.g.,--preview-method auto --verbose DEBUGfor more detailed ComfyUI logs which might also affect custom node loggers if they are configured to inherit levels). The logger name used is "ImageMisc". You can force debugging level for these nodes defining theIMAGEMISC_NODES_DEBUGenvironment variable to1.
📜 Project History
- 1.0.0 2025-07-21: Initial release
- Just the download image.
- 1.1.0 2025-07-25: Adapted to use SeCoNoHe
- 1.1.1 2025-07-25: Just small details for ComfyUI registry
- 1.2.0 2025-10-05:
- 1.3.0 2025-10-14: Pad Image, Resize Image and Resize Mask nodes
- 1.4.0 2025-10-20: "Image with text label" and "Arbitrary Normalize"/"Normalize Parameters"

