import jieba
from matplotlib import pyplot as plt
from wordcloud import WordCloud
from PIL import Image
import numpy as np
import sqlite3
con = sqlite3.connect('51job.db')
cur = con.cursor()
sql='select wel from job51'
data=cur.execute(sql)
isCN=1
text=""
for item in data:
text=text+item[0]
cur.close()
con.close()
cut=jieba.cut(text)
string=' '.join(cut)
print(len(string))
img=Image.open(r'.\static\assets\img\style.jpg')
img_array=np.array(img)
wc=WordCloud(
background_color='white',
mask=img_array,
font_path=r'C:/Windows/Fonts/msyh.ttc'
)
wc.generate_from_text(string)
fig=plt.figure(1)
plt.imshow(wc)
plt.axis('off')
plt.show()
plt.savefig(r'.\static\assets\img\word.jpg',dpi=500)
wordcloud中文乱码,电脑C:\windows\Fonts中有msyh.ttc为什么还是会出现乱码,图片不能显示 求指点
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
2条回答 默认 最新
悬赏问题
- ¥15 ceph的对象、块、文件相关问题求解答
- ¥50 如果使用python进行ERA5 10米风场预报检验
- ¥15 navicat解析mysql密码
- ¥15 SDAPI(关键词-table)
- ¥15 unity安卓打包出现问题
- ¥20 安装catkin时遇到了如下问题请问该如何解决呢
- ¥15 VAE模型如何输出结果
- ¥15 编译python程序为pyd文件报错:{"source code string cannot contain null bytes"
- ¥20 关于#r语言#的问题:广义加行模型拟合曲线后如何求拐点
- ¥15 fluent设置了自动保存后,会有几个时间点不保存