pythonでwordcloudを作成しているのですが、ネットで見る画像に比べ、配色がとても地味です。
パラメータを見ても分からなかったので・・、カラフルな配色にする方法があればご教示頂きたいです。
よろしくお願いします!
↓↓今回作成した画像
↓↓今回使用のソースコード
# coding: utf-8 #!/usr/bin/env python from wordcloud import WordCloud from PIL import Image import numpy as np import re from collections import Counter import MeCab import itertools from igraph import * #文字色を設定①〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 #def color_func(word, font_size, position, orientation, random_state, font_path): # return 'pink' #文字色を設定②〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 def recolor(self, random_state=None, color_func=None, colormap=None): if isinstance(random_state, int): random_state = Random(random_state) self._check_generated() if color_func is None: if colormap is None: color_func = self.color_func else: color_func = colormap_color_func(colormap) self.layout_ = [(word_freq, font_size, position, orientation, color_func(word=word_freq[0], font_size=font_size, position=position, orientation=orientation, random_state=random_state, font_path=self.font_path)) for word_freq, font_size, position, orientation, _ in self.layout_] return self #テキストを設定〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 with open("C:/python/abe.txt") as f: string = f.read() wordcloud = WordCloud( background_color="white", #color_func = color_func, font_path="C:/python/AozoraMinchoHeavy.ttf", #mask=girl_mask, width=800, height=600 ).generate(string) wordcloud.to_file("./wordcloud_image_abe.png")
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/01/16 10:01