IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> Python wordcloud 如何修改云图字体颜色 -> 正文阅读

[Python知识库]Python wordcloud 如何修改云图字体颜色

目录

传入colormap

传入color_func

? ? ? 单颜色函数

? ? ? 自定义颜色函数


传入colormap

?

????????这种方式只需在WordCloud初始化时传入colormap即可

????????

wc=wordcloud.WordCloud(font_path=r"C:\Windows\Fonts\simhei.ttf",#字体路径  
                       colormap="spring")

????????colormap 的名称 可以在官方查到??matplotlibcolormaps

传入color_func

? ? ? 单颜色函数

? ? ? ? ?可以使用wordcloud中的 get_single_color_func(color)

? ? ? ? ? ? ? ? color 可以是 颜色字符串? "red"、"green"、"blue".....

? ? ? ? ? ? ? ? 也可以是用字符串表示的十六进制rgb? ? 比如 "#ff0000" 表示红色

?
wc=wordcloud.WordCloud(font_path=r"C:\Windows\Fonts\simhei.ttf",#字体路径  
                       color_func=wordcloud.get_single_color_func("blue"))

?

? ? ? 自定义颜色函数

? ? ? ? ?可以通过函数回调自定义颜色函数

? ? ? ? 该函数必须传入相应的的参数

????????color_func(word=None, font_size=None, position=None,

????????????????????????orientation=None, font_path=None, random_state=None)

? ? ? ? ? ? ? ? word 是单个分词

? ? ? ? ? ? ? ? font_size 词的字号

? ? ? ? ? ? ? ? position 词所在的位置

? ? ? ? ? ? ? ? orientation 表示该词是横向还是竖向 (None 为横向 2为竖向)

? ? ? ? ? ? ? ? font_path 字体路径

? ? ? ? ? ? ? ? random_state? Random类的实例

? ? ? ? 需返回一个rgb元组? return (255,0,255)

代码

#python 版本3.9.4
import wordcloud
import jieba
import imageio



#读取形状图片(足球)
image=imageio.imread("wordimage.jpg")


data=(file:=open("datajieba.txt",'r',encoding="utf8")).read()
file.close()


#将停用词添加到冻结集合
stopwords=frozenset(((
    file:=open("stopwords.txt",'r',encoding="utf8")).read()).split())
file.close()



#根据字体属性更改颜色
def color_func(word,/,font_size,position,random_state,**kwargs):

    #字体位置 y
    if position[0]<500:
        r=random_state.randint(0,40)# 相当于random.randint(0,40)
    else:
        r=random_state.randint(100,150)

    #字体位置 x
    if position[1]<500:
        g=random_state.randint(0,40)
    else:
        g=random_state.randint(100,150)

    #字体大小 
    if font_size<50:
        b=random_state.randint(0,40)
    else:
        b=random_state.randint(100,150)

    #返回一个rgb颜色元组
    return (r,g,b)


wc=wordcloud.WordCloud(font_path=r"C:\Windows\Fonts\simhei.ttf",#字体路径  
                       min_font_size=6,max_font_size=100, #字号
                       mask=image,#词云形状
                       color_func=color_func,# 这里要将刚才写的函数传入
                       font_step=4, #字号步长
                       max_words=500, #最大词数
                       background_color="white")#背景色



filterfunc=lambda x:x not in stopwords and len(x)>1
# 将停用词以及长度为1的字去除 
words=filter(filterfunc, jieba.cut(data,HMM=True))

#生成词云
wc.generate(' '.join(words))

#生成图片
wc.to_file("pywordcloud.png")

效果

源码在此??链接:https://pan.baidu.com/s/1u3BcBWgGGGmIrk-1YaQ0Og?
????????????????提取码:word

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-09-06 11:06:03  更:2021-09-06 11:06:20 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 13:40:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码