├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── __init__.py ├── nodes ├── base_compressor.py ├── batch_image_compressor.py └── image_compressor.py ├── pyproject.toml ├── requirements.txt └── workflow.png /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/README_en.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes/base_compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/nodes/base_compressor.py -------------------------------------------------------------------------------- /nodes/batch_image_compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/nodes/batch_image_compressor.py -------------------------------------------------------------------------------- /nodes/image_compressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/nodes/image_compressor.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuqianhonga/ComfyUI-Image-Compressor/HEAD/workflow.png --------------------------------------------------------------------------------