Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / level3-lesson21-diy1

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 6279ad75 authored 3 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 6e73a1ff
Hide whitespace changes
Inline Side-by-side
Showing with 8 additions and 9 deletions
  • 1.jpg
  • 1.png
  • my_cloud.py
1.jpg 0 → 100644
View file @ 6279ad75
This diff is collapsed. Click to expand it.
1.png
View file @ 6279ad75
This diff is collapsed. Click to expand it.
my_cloud.py
View file @ 6279ad75
import wordcloud
from PIL import Image
import numpy
f=open('python二级考试大纲.txt','r',encoding='utf-8')
n=f.read()
i=Image.open('1.png')
with open('python二级考试大纲.txt','r',encoding='utf-8')as f:
n=f.read()
i=Image.open('1.jpg')
i_c=numpy.array(i)
d=wordcloud.ImageColorGenerator(i_c)
print(i)
w=wordcloud.WordCloud(background_color='lightgreen',font_path='STXINGKA.TTF')
w=wordcloud.WordCloud(background_color='white',font_path='STXINGKA.TTF',mask=i_c,color_func=d)
w.generate(n)
w.to_file('6x2.png')
f.close()
v=numpy.array(i)
print(v)
\ No newline at end of file
w.to_file('1.png')
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment