针对您遇到的 AttributeError: 'FreeTypeFont' object has no attribute 'getsize' 错误,以下是一些详细的解答步骤和建议: 1. 确认 FreeTypeFont 对象的来源和上下文 这个错误通常发生在使用 Pillow(PIL Fork)库进行图像处理时,特别是涉及到文本绘制和字体处理时。FreeTypeFont 是Pillow 中用于处理字体的一个类。
因为 自己安装的 Pillow 是 10.1.0 版本,而 Pillow 在 9.5.0 上才有 getsize 这个属性,但是在后续版本中删除了这个方法。 方法2: 不降级 Pillow 使用新的 getbbox 方法获取 文本框的坐标值,然后,计算出文本大小 def getsize(font, text): left, top, right, bottom = font.getbbox(text) return rig...
问题出在 库 Pillow 中的 getsize 函数,getsize已弃用,将在Pillow 10(2023-07-01)中删除。 python3– Pillow10 ‘FreeTypeFont‘ object has no attribute ‘getsize‘报错解决_freetypefont' object has no attribute 'getsize-CSDN博客 上述博客中第一种方法是降低 Pillow 版本,没尝试。 第二种方法就是用...
简介:【已解决】attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘ 问题 报错:attributeerror: ‘FreeTypeFont’ object has no attribute ‘getsize’ 运行yolo代码时,出现如下面的报错 原因分析 看过很多博客分析,都是说FreeTypeFont字体的原因,其实真实问题出现yolo版本安装的Pillow库更新后,g...
简介:【已解决】attributeerror: ‘FreeTypeFont‘ object has no attribute ‘getsize‘ 问题 报错:attributeerror: ‘FreeTypeFont’ object has no attribute ‘getsize’ 运行yolo代码时,出现如下面的报错 原因分析 看过很多博客分析,都是说FreeTypeFont字体的原因,其实真实问题出现yolo版本安装的Pillow库更新后,...
AttributeError: 'FreeTypeFont' object has no attribute 'getsize' 0/99 3.53G 4.231 6.698 5.599 42 640: 0%| | 3/3520 00:19Exception in thread Thread-13: Traceback (most recent call last): File "/home/Users/anaconda3/envs/detr/lib/python3.8/threading.py", line 932, in _bootstrap_...
pip install pillow==9.5.0 2、AttributeError: ‘FreeTypeFont‘ object has no attribute ‘getsize‘ 这个bug和第一个bug一样都是因为pillow库版本太新出现的问题,最快的方法也是降低版本, pip install pillow==9.5.0 或者找到引用的地方进行修改,这个略麻烦...
text_width, text_height = font.getsize(watermark_text) AttributeError: 'FreeTypeFont' object has no attribute 'getsize' 👍1v-iashin reacted with thumbs up emoji 👍 👍1yaner-here reacted with thumbs up emoji👎1mattgit reacted with thumbs down emoji ...
记录| AttributeError: ‘FreeTypeFont‘ object has no attribute ‘getsize‘ 报错: AttributeError: 'FreeTypeFont' object has no attribute 'getsize' 解决办法: pip install Pillow==9.5.0 1.
In draw_alignment, a call to font.getsize() may result in an error because Pillow no longer supports the getsize method (for Pillow > 9.5.0). The solution is to restrict the Pillow library to 9.5.0 or less, or to replace getsize with get...