├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── blend_modes ├── arithmetic.py ├── binary.py ├── darken.py ├── hsi.py ├── hsi_helpers.py ├── hsl.py ├── hsl_helpers.py ├── hsv.py ├── hsv_helpers.py ├── hsy.py ├── hsy_helpers.py ├── index.py ├── lighten.py ├── lighten_helpers.py ├── mix.py ├── modulo.py └── negative.py ├── blend_modes_enum.py ├── helpers.py ├── pyproject.toml └── workfow.example.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | */__pycache__/* 3 | *.py[cod] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/__init__.py -------------------------------------------------------------------------------- /blend_modes/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/arithmetic.py -------------------------------------------------------------------------------- /blend_modes/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/binary.py -------------------------------------------------------------------------------- /blend_modes/darken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/darken.py -------------------------------------------------------------------------------- /blend_modes/hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsi.py -------------------------------------------------------------------------------- /blend_modes/hsi_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsi_helpers.py -------------------------------------------------------------------------------- /blend_modes/hsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsl.py -------------------------------------------------------------------------------- /blend_modes/hsl_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsl_helpers.py -------------------------------------------------------------------------------- /blend_modes/hsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsv.py -------------------------------------------------------------------------------- /blend_modes/hsv_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsv_helpers.py -------------------------------------------------------------------------------- /blend_modes/hsy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsy.py -------------------------------------------------------------------------------- /blend_modes/hsy_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/hsy_helpers.py -------------------------------------------------------------------------------- /blend_modes/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/index.py -------------------------------------------------------------------------------- /blend_modes/lighten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/lighten.py -------------------------------------------------------------------------------- /blend_modes/lighten_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/lighten_helpers.py -------------------------------------------------------------------------------- /blend_modes/mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/mix.py -------------------------------------------------------------------------------- /blend_modes/modulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/modulo.py -------------------------------------------------------------------------------- /blend_modes/negative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes/negative.py -------------------------------------------------------------------------------- /blend_modes_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/blend_modes_enum.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/helpers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/pyproject.toml -------------------------------------------------------------------------------- /workfow.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vault-developer/comfyui-image-blender/HEAD/workfow.example.json --------------------------------------------------------------------------------