Sto usando word cloud con alcuni file txt. Come cambio this example se volevo 1) aumentare la risoluzione e 2) rimuovere il bordo vuoto.Aumentare la risoluzione con word-cloud e rimuovere il bordo vuoto
#!/usr/bin/env python2
"""
Minimal Example
===============
Generating a square wordcloud from the US constitution using default arguments.
"""
from os import path
import matplotlib.pyplot as plt
from wordcloud import WordCloud
d = path.dirname(__file__)
# Read the whole text.
text = open(path.join(d, 'constitution.txt')).read()
wordcloud = WordCloud().generate(text)
# Open a plot of the generated image.
plt.imshow(wordcloud)
plt.axis("off")
plt.show()