├── ComfyI2I.py ├── Guide_Images ├── Blend_Contrast.JPG ├── Blend_Percentage.JPG ├── Blur.JPG ├── Channel.JPG ├── Color_Transfer.JPG ├── Combine_and_Paste.JPG ├── ComfyShop │ ├── Access.jpg │ ├── Brush_Menu.jpg │ ├── RGB-A.jpg │ ├── Save_To_Node.jpg │ ├── Saving_Outputs.jpg │ ├── Zoom_In.jpg │ └── Zoom_Out.jpg ├── Inpaint_Segments.JPG ├── Invert.JPG ├── ShrinkGrow.JPG ├── Use-Mask-1.jpg ├── Use-Mask-2.jpg ├── Use_Text_Sigma 1.JPG ├── Use_Text_Sigma 2.JPG ├── V2 │ ├── ColorXferworkflow.JPG │ ├── blur_amount.JPG │ ├── blur_radius.JPG │ ├── brightness.JPG │ ├── contrast.JPG │ ├── empty_mask.JPG │ ├── gamma.JPG │ ├── masked_xfer.JPG │ ├── multi_xfer.JPG │ ├── no_of_colors.JPG │ ├── separate_mask.JPG │ ├── strength.JPG │ └── xfer_across_channels.JPG └── Workflow.jpg ├── LICENSE ├── README.md ├── __init__.py ├── __pycache__ ├── ComfyI2I.cpython-310.pyc └── __init__.cpython-310.pyc ├── install.bat ├── js ├── ComfyShop.js └── imageProcessorWorker.js ├── requirements.txt └── workflows ├── Color Xfer Workflow.json ├── I2I workflow.json └── Multi_XFer_Workflow.json /ComfyI2I.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/ComfyI2I.py -------------------------------------------------------------------------------- /Guide_Images/Blend_Contrast.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Blend_Contrast.JPG -------------------------------------------------------------------------------- /Guide_Images/Blend_Percentage.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Blend_Percentage.JPG -------------------------------------------------------------------------------- /Guide_Images/Blur.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Blur.JPG -------------------------------------------------------------------------------- /Guide_Images/Channel.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Channel.JPG -------------------------------------------------------------------------------- /Guide_Images/Color_Transfer.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Color_Transfer.JPG -------------------------------------------------------------------------------- /Guide_Images/Combine_and_Paste.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Combine_and_Paste.JPG -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/Access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/Access.jpg -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/Brush_Menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/Brush_Menu.jpg -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/RGB-A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/RGB-A.jpg -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/Save_To_Node.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/Save_To_Node.jpg -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/Saving_Outputs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/Saving_Outputs.jpg -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/Zoom_In.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/Zoom_In.jpg -------------------------------------------------------------------------------- /Guide_Images/ComfyShop/Zoom_Out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ComfyShop/Zoom_Out.jpg -------------------------------------------------------------------------------- /Guide_Images/Inpaint_Segments.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Inpaint_Segments.JPG -------------------------------------------------------------------------------- /Guide_Images/Invert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Invert.JPG -------------------------------------------------------------------------------- /Guide_Images/ShrinkGrow.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/ShrinkGrow.JPG -------------------------------------------------------------------------------- /Guide_Images/Use-Mask-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Use-Mask-1.jpg -------------------------------------------------------------------------------- /Guide_Images/Use-Mask-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Use-Mask-2.jpg -------------------------------------------------------------------------------- /Guide_Images/Use_Text_Sigma 1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Use_Text_Sigma 1.JPG -------------------------------------------------------------------------------- /Guide_Images/Use_Text_Sigma 2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Use_Text_Sigma 2.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/ColorXferworkflow.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/ColorXferworkflow.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/blur_amount.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/blur_amount.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/blur_radius.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/blur_radius.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/brightness.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/brightness.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/contrast.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/contrast.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/empty_mask.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/empty_mask.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/gamma.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/gamma.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/masked_xfer.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/masked_xfer.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/multi_xfer.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/multi_xfer.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/no_of_colors.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/no_of_colors.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/separate_mask.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/separate_mask.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/strength.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/strength.JPG -------------------------------------------------------------------------------- /Guide_Images/V2/xfer_across_channels.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/V2/xfer_across_channels.JPG -------------------------------------------------------------------------------- /Guide_Images/Workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/Guide_Images/Workflow.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/ComfyI2I.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/__pycache__/ComfyI2I.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/install.bat -------------------------------------------------------------------------------- /js/ComfyShop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/js/ComfyShop.js -------------------------------------------------------------------------------- /js/imageProcessorWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/js/imageProcessorWorker.js -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflows/Color Xfer Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/workflows/Color Xfer Workflow.json -------------------------------------------------------------------------------- /workflows/I2I workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/workflows/I2I workflow.json -------------------------------------------------------------------------------- /workflows/Multi_XFer_Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManglerFTW/ComfyI2I/HEAD/workflows/Multi_XFer_Workflow.json --------------------------------------------------------------------------------