一晚上整了这么个破玩意???
路漫漫其修远兮啊
这是个背影。。。。
这是个橘子。。。。
import jieba
import wordcloud
from imageio import imread
mask=imread('juzi.png')
with open('beiying.txt','r',encoding='UTF-8')as file:
text=file.read()
words=jieba.lcut(text)
newtxt=' '.join(words)
wd=wordcloud.WordCloud(font_path="msyh.ttc",\
background_color='white',\
width=1000,\
height=1000,\
max_font_size=80,\
mask=mask,\
).generate(newtxt)
wd.to_file('test.png')