Nonebot2 PIL工具插件
Project description
nonebot-plugin-imageutils
功能
- 提供
BuildImage
类,方便图片尺寸修改、添加文字等操作 - 提供
Text2Image
类,方便实现文字转图,支持少量BBCode
标签 - 文字支持多种字体切换,能够支持
emoji
- 添加文字自动调节字体大小
安装
- 使用 nb-cli
nb plugin install nonebot_plugin_imageutils
- 使用 pip
pip install nonebot_plugin_imageutils
配置字体
本插件选择了一些不同系统上的字体,以支持更多的字符
对于
Ubuntu
系统,建议安装fonts-noto
软件包 以支持中文字体和 emoji并将简体中文设置为默认语言:(否则会有部分中文显示为异体(日文)字形,详见 ArchWiki)
sudo apt install fonts-noto sudo locale-gen zh_CN zh_CN.UTF-8 sudo update-locale LC_ALL=zh_CN.UTF-8 LANG=zh_CN.UTF-8 fc-cache -fv
默认备选字体列表如下:
"Arial", "Tahoma", "Helvetica Neue", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans SC", "Noto Sans CJK JP", "WenQuanYi Micro Hei", "Apple Color Emoji", "Noto Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
可在 .env.*
文件中添加 default_fallback_fonts
变量 来自定义备选字体
字体文件需要在系统目录下,或放置于自定义字体路径中
自定义字体路径默认为机器人运行目录下的 data/fonts/
文件夹,
可在 .env.*
文件中添加 custom_font_path
变量 自定义字体路径
其他插件可以通过 nonebot_plugin_imageutils/fonts.py
中的 add_font
函数往字体文件夹中添加字体
使用示例
BuildImage
from nonebot_plugin_imageutils import BuildImage
# output: BytesIO
output = BuildImage.new((300, 300)).circle().draw_text((30, 30, 270, 270), "测试ymddl😂").save_jpg()
Text2Image
from nonebot_plugin_imageutils import Text2Image
# img: PIL.Image.Image
img = Text2Image.from_text("@mnixry 🤗", 50).to_image()
# 以上结果为 PIL 的 Image 格式,若要直接 MessageSegment 发送,可以转为 BytesIO
output = BytesIO()
img.save(output, format="png")
await matcher.send(MessageSegment.image(output))
- 使用
BBCode
from nonebot_plugin_imageutils import text2image
# img: PIL.Image.Image
img = text2image("N[size=40][color=red]o[/color][/size]neBo[size=30][color=blue]T[/color][/size]\n[align=center]太强啦[/align]")
# 以上结果为 PIL 的 Image 格式,若要直接 MessageSegment 发送,可以转为 BytesIO
output = BytesIO()
img.save(output, format="png")
await matcher.send(MessageSegment.image(output))
目前支持的 BBCode
标签:
[align=left|right|center][/align]
: 文字对齐方式[color=#66CCFF|red|black][/color]
: 字体颜色[stroke=#66CCFF|red|black][/stroke]
: 描边颜色[font=msyh.ttc][/font]
: 文字字体[size=30][/size]
: 文字大小[b][/b]
: 文字加粗
特别感谢
- HibiKier/zhenxun_bot 基于 Nonebot2 和 go-cqhttp 开发,以 postgresql 作为数据库,非常可爱的绪山真寻bot
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nonebot_plugin_imageutils-0.1.17.tar.gz
.
File metadata
- Download URL: nonebot_plugin_imageutils-0.1.17.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.79.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a37b0e71f94c16afaef2f5bd8ce91ae15327dac5d8c9e92744cd62d70300f7e |
|
MD5 | aba21e24f0ed829a3c29fc16666edf2a |
|
BLAKE2b-256 | c146fb955085c829e1fccb73d6f43d8a4fe94a81c65742cc4c6c3eeb824d2bc5 |
File details
Details for the file nonebot_plugin_imageutils-0.1.17-py3-none-any.whl
.
File metadata
- Download URL: nonebot_plugin_imageutils-0.1.17-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.79.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 054d8c86582b530511d9a2769dfb22dab87e351f29c3e6c75c6d01544e1a1256 |
|
MD5 | 7407f9c361ff40a32a0713f89c5a4f24 |
|
BLAKE2b-256 | d02b580ba5f28a187edcbced34dc266a2c2bd62dc9b2427bc72fc37101d98b51 |