pillow10库在(2023-07-01)发布的新版本中移除了textsize()函数,新项目可能出现兼容性问题
Closed this issue · 3 comments
Rouphy commented
Rouphy commented
一个不用降级pillow的办法是将第327行换成
bbox = shougouDraw.textbbox((0, 0), playCountInfo, font2)
playCountInfoW = bbox[2] - bbox[0]
playCountInfoH = bbox[3] - bbox[1]
同时将第328行换成
textPos = ((shougouImgW - playCountInfoW - font2.getbbox(playCountInfo)) / 2, 5)
因为textsize()和getoffest() are both out of date.
我写了一个b40和b50改好的版本希望可以直接push
Diving-Fish commented
发pr好了
Rouphy commented
发pr好了
感谢鱼佬,pr发了