├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── example ├── IC image combination example.json └── aa.py ├── font ├── a.py └── alcatraz+script.otf ├── py ├── Image.py ├── ImageIC.py ├── ImageICAdvanced.py ├── ImageLoaderAdvanced.py ├── ImageUpscaleTiled.py ├── ImagesFromFolder.py ├── Mask.py ├── MaskBatchNode.py ├── MaskComposite.py ├── MaskCropNode.py ├── image_accumulator.py ├── image_blend_resize.py ├── image_selector.py ├── logic.py ├── mask_smart_valley_split.py ├── mask_to_ellipse.py ├── text.py └── text_image_node.py ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/__init__.py -------------------------------------------------------------------------------- /example/IC image combination example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/example/IC image combination example.json -------------------------------------------------------------------------------- /example/aa.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font/a.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /font/alcatraz+script.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/font/alcatraz+script.otf -------------------------------------------------------------------------------- /py/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/Image.py -------------------------------------------------------------------------------- /py/ImageIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/ImageIC.py -------------------------------------------------------------------------------- /py/ImageICAdvanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/ImageICAdvanced.py -------------------------------------------------------------------------------- /py/ImageLoaderAdvanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/ImageLoaderAdvanced.py -------------------------------------------------------------------------------- /py/ImageUpscaleTiled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/ImageUpscaleTiled.py -------------------------------------------------------------------------------- /py/ImagesFromFolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/ImagesFromFolder.py -------------------------------------------------------------------------------- /py/Mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/Mask.py -------------------------------------------------------------------------------- /py/MaskBatchNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/MaskBatchNode.py -------------------------------------------------------------------------------- /py/MaskComposite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/MaskComposite.py -------------------------------------------------------------------------------- /py/MaskCropNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/MaskCropNode.py -------------------------------------------------------------------------------- /py/image_accumulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/image_accumulator.py -------------------------------------------------------------------------------- /py/image_blend_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/image_blend_resize.py -------------------------------------------------------------------------------- /py/image_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/image_selector.py -------------------------------------------------------------------------------- /py/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/logic.py -------------------------------------------------------------------------------- /py/mask_smart_valley_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/mask_smart_valley_split.py -------------------------------------------------------------------------------- /py/mask_to_ellipse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/mask_to_ellipse.py -------------------------------------------------------------------------------- /py/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/text.py -------------------------------------------------------------------------------- /py/text_image_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/py/text_image_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yichengup/ComfyUI-YCNodes/HEAD/requirements.txt --------------------------------------------------------------------------------