├── .github └── workflows │ ├── publish.yml │ └── saver-tests.yml ├── .gitignore ├── CHANGELOG.md ├── CLAUDE.md ├── LICENSE ├── README.md ├── __init__.py ├── civitai_nodes.py ├── example-workflow.json ├── js ├── lib │ └── exif-reader.js └── read_exif_workflow.js ├── nodes.py ├── nodes_literals.py ├── nodes_loaders.py ├── nodes_selectors.py ├── prompt_metadata_extractor.py ├── pyproject.toml ├── requirements.txt ├── saver ├── __init__.py ├── default_workflow.json ├── pytest.ini ├── saver.py └── test_saver.py ├── utils.py └── utils_civitai.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/saver-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/.github/workflows/saver-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/__init__.py -------------------------------------------------------------------------------- /civitai_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/civitai_nodes.py -------------------------------------------------------------------------------- /example-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/example-workflow.json -------------------------------------------------------------------------------- /js/lib/exif-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/js/lib/exif-reader.js -------------------------------------------------------------------------------- /js/read_exif_workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/js/read_exif_workflow.js -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/nodes.py -------------------------------------------------------------------------------- /nodes_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/nodes_literals.py -------------------------------------------------------------------------------- /nodes_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/nodes_loaders.py -------------------------------------------------------------------------------- /nodes_selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/nodes_selectors.py -------------------------------------------------------------------------------- /prompt_metadata_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/prompt_metadata_extractor.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | piexif 3 | -------------------------------------------------------------------------------- /saver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /saver/default_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/saver/default_workflow.json -------------------------------------------------------------------------------- /saver/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/saver/pytest.ini -------------------------------------------------------------------------------- /saver/saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/saver/saver.py -------------------------------------------------------------------------------- /saver/test_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/saver/test_saver.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/utils.py -------------------------------------------------------------------------------- /utils_civitai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexopus/ComfyUI-Image-Saver/HEAD/utils_civitai.py --------------------------------------------------------------------------------