This commit is contained in:
hibiki 2021-08-18 01:33:43 +08:00
parent 8090ebe8ce
commit fc34cd541a

View File

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