├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── data └── TXT2IMG │ ├── font │ ├── sarasa-mono-sc-regular.ttf │ └── sarasa-mono-sc-regular.zip │ └── image │ ├── background.png │ ├── banner.png │ └── mi_background.png ├── nonebot_plugin_txt2img ├── __init__.py ├── config.py ├── download.py ├── model.py ├── template.py └── txt2img.py ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/README.md -------------------------------------------------------------------------------- /data/TXT2IMG/font/sarasa-mono-sc-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/data/TXT2IMG/font/sarasa-mono-sc-regular.ttf -------------------------------------------------------------------------------- /data/TXT2IMG/font/sarasa-mono-sc-regular.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/data/TXT2IMG/font/sarasa-mono-sc-regular.zip -------------------------------------------------------------------------------- /data/TXT2IMG/image/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/data/TXT2IMG/image/background.png -------------------------------------------------------------------------------- /data/TXT2IMG/image/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/data/TXT2IMG/image/banner.png -------------------------------------------------------------------------------- /data/TXT2IMG/image/mi_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/data/TXT2IMG/image/mi_background.png -------------------------------------------------------------------------------- /nonebot_plugin_txt2img/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/nonebot_plugin_txt2img/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_txt2img/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/nonebot_plugin_txt2img/config.py -------------------------------------------------------------------------------- /nonebot_plugin_txt2img/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/nonebot_plugin_txt2img/download.py -------------------------------------------------------------------------------- /nonebot_plugin_txt2img/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/nonebot_plugin_txt2img/model.py -------------------------------------------------------------------------------- /nonebot_plugin_txt2img/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/nonebot_plugin_txt2img/template.py -------------------------------------------------------------------------------- /nonebot_plugin_txt2img/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/nonebot_plugin_txt2img/txt2img.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mobyw/nonebot-plugin-txt2img/HEAD/pyproject.toml --------------------------------------------------------------------------------