├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── example ├── add_text.json ├── add_text2.json ├── image.png └── image2.png ├── font ├── arial.ttf └── 庞门正道粗书体6.0.ttf ├── nodes.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/__init__.py -------------------------------------------------------------------------------- /example/add_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/example/add_text.json -------------------------------------------------------------------------------- /example/add_text2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/example/add_text2.json -------------------------------------------------------------------------------- /example/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/example/image.png -------------------------------------------------------------------------------- /example/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/example/image2.png -------------------------------------------------------------------------------- /font/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/font/arial.ttf -------------------------------------------------------------------------------- /font/庞门正道粗书体6.0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/font/庞门正道粗书体6.0.ttf -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LZpenguin/ComfyUI-Text/HEAD/pyproject.toml --------------------------------------------------------------------------------