白色
时间: 2024-02-10 14:03:22 浏览: 57
一套白色的PNG图标
5星 · 资源好评率100%
好的,以下是使用样例代码生成一个长方形的stylecloud,并设置背景为白色,字体为黑色:
```python
import stylecloud
# 设置词云形状为长方形
stylecloud.gen_stylecloud(file_path='your_text_file.txt',
icon_name='fas fa-square',
output_name='output.png',
background_color='white',
palette='matplotlib.Black',
font_path='msyh.ttc')
```
请将上述代码中的 `your_text_file.txt` 替换为您自己的文本文件路径,`output.png` 替换为您想要输出的文件名,并确保已安装 `fontawesome` 和 `matplotlib` 库。如果需要更改字体,可以将 `font_path` 参数设置为您想要使用的字体文件路径。
阅读全文