update check_zhenxun_update

This commit is contained in:
hibiki 2021-08-18 00:26:11 +08:00
parent f754ad1c76
commit 39bb5a9ab9

View File

@ -94,8 +94,8 @@ async def check_update(bot: Bot) -> int:
width = 0 width = 0
height = len(update_info.split('\n')) * 24 height = len(update_info.split('\n')) * 24
for m in update_info.split('\n'): for m in update_info.split('\n'):
if len(m) * 20 > width: if len(m) * 24 > width:
width = len(m) * 21 width = len(m) * 24
A = CreateImg(800, height, font_size=20) A = CreateImg(800, height, font_size=20)
A.text((10, 10), update_info) A.text((10, 10), update_info)
A.save(f'{IMAGE_PATH}/update_info.png') A.save(f'{IMAGE_PATH}/update_info.png')