├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── image.py ├── images ├── LoadImageFromPath-FileBrowser.jpg ├── LoadImageFromPath-ImageAndPath.jpg ├── LoadImageFromPath-Mask.jpg └── LoadImageFromPath.jpg ├── pyproject.toml ├── requirements.txt └── web └── ib_image_loader.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/__init__.py -------------------------------------------------------------------------------- /image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/image.py -------------------------------------------------------------------------------- /images/LoadImageFromPath-FileBrowser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/images/LoadImageFromPath-FileBrowser.jpg -------------------------------------------------------------------------------- /images/LoadImageFromPath-ImageAndPath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/images/LoadImageFromPath-ImageAndPath.jpg -------------------------------------------------------------------------------- /images/LoadImageFromPath-Mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/images/LoadImageFromPath-Mask.jpg -------------------------------------------------------------------------------- /images/LoadImageFromPath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/images/LoadImageFromPath.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/ib_image_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaoses-Ib/ComfyUI_Ib_CustomNodes/HEAD/web/ib_image_loader.js --------------------------------------------------------------------------------