--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-36-6da7a0d23674> in <module> 13 height=2500 14 ) ---> 15 wordcloud.fit_words(num)#传入词频 16 17 #展示词云 C:\ProgramData\Anaconda3\lib\site-packages\wordcloud\wordcloud.py in fit_words(self, frequencies) 387 self 388 """ --> 389 return self.generate_from_frequencies(frequencies) 390 391 def generate_from_frequencies(self, frequencies, max_font_size=None): # noqa: C901 C:\ProgramData\Anaconda3\lib\site-packages\wordcloud\wordcloud.py in generate_from_frequencies(self, frequencies, max_font_size) 451 font_size = self.height 452 else: --> 453 self.generate_from_frequencies(dict(frequencies[:2]), 454 max_font_size=self.height) 455 # find font sizes C:\ProgramData\Anaconda3\lib\site-packages\wordcloud\wordcloud.py in generate_from_frequencies(self, frequencies, max_font_size) 506 font, orientation=orientation) 507 # get size of resulting text --> 508 box_size = draw.textbbox((0, 0), word, font=transposed_font, anchor="lt") 509 # find possible places using integral image: 510 result = occupancy.sample_position(box_size[3] + self.margin, C:\ProgramData\Anaconda3\lib\site-packages\PIL\ImageDraw.py in textbbox(self, xy, text, font, anchor, spacing, align, direction, features, language, stroke_width, embedded_color) 565 font = self.getfont() 566 mode = "RGBA" if embedded_color else self.fontmode --> 567 bbox = font.getbbox( 568 text, mode, direction, features, language, stroke_width, anchor 569 ) AttributeError: 'TransposedFont' object has no attribute 'getbbox'
时间: 2024-02-14 15:10:22 浏览: 122
这个错误是因为 `wordcloud` 库的一个 bug,在使用旋转的字体时会出现。具体地说,它是因为 `TransposedFont` 对象没有 `getbbox()` 方法而抛出的 `AttributeError`。
要解决这个问题,你可以在调用 `textbbox()` 方法时,传入 `font.font` 属性而不是 `TransposedFont` 对象本身。例如:
```
box_size = draw.textbbox((0, 0), word, font=transposed_font.font, anchor="lt")
```
这个代码将会使用 `TransposedFont` 对象的 `font` 属性,该属性是一个普通的 `PIL` 字体对象,并且具有 `getbbox()` 方法,因此不会出现 `AttributeError`。
阅读全文
相关推荐
![-](https://img-home.csdnimg.cn/images/20241231045053.png)
![-](https://img-home.csdnimg.cn/images/20241231045053.png)
![-](https://img-home.csdnimg.cn/images/20241231045053.png)
![application/x-rar](https://img-home.csdnimg.cn/images/20210720083606.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![pdf](https://img-home.csdnimg.cn/images/20241231044930.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)