├── .gitignore ├── License ├── README.md ├── data ├── BON VOYAGE.txt ├── Jungle P.txt ├── Run!Run!Run!.txt ├── Shining Ray.txt ├── believe.txt ├── free will.txt ├── memories.txt ├── share the world.txt ├── 全新世界.txt ├── 冒险世界.txt ├── 向著阳光.txt ├── 心的地图.txt ├── 未来航海.txt ├── 永久指针.txt └── 疯狂彩虹.txt ├── fonts └── simhei.ttf ├── gif_example.py ├── gif_example2.py ├── gifs ├── ace.gif └── one_piece │ ├── a.jpg │ ├── b.jpg │ ├── c.jpg │ ├── d.jpg │ ├── e.jpg │ ├── f.jpg │ ├── g.jpg │ └── h.jpg ├── images ├── luffy.png └── tony.png ├── luffy_result.png ├── output ├── ace.gif ├── happy.png ├── luffy.png ├── one_piece.gif ├── sad.png └── tony.png ├── qiaoba.png ├── requirements.txt ├── save_example.py ├── sentiment ├── BosonNLP_sentiment_score.txt ├── happy.png ├── license.txt ├── readme.txt └── sad.png ├── sentiment_analyser.py ├── sentiment_example.py ├── show_example.py ├── weibo ├── happy.txt └── sad.txt └── words_image.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | .idea/* 4 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/README.md -------------------------------------------------------------------------------- /data/BON VOYAGE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/BON VOYAGE.txt -------------------------------------------------------------------------------- /data/Jungle P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/Jungle P.txt -------------------------------------------------------------------------------- /data/Run!Run!Run!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/Run!Run!Run!.txt -------------------------------------------------------------------------------- /data/Shining Ray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/Shining Ray.txt -------------------------------------------------------------------------------- /data/believe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/believe.txt -------------------------------------------------------------------------------- /data/free will.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/free will.txt -------------------------------------------------------------------------------- /data/memories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/memories.txt -------------------------------------------------------------------------------- /data/share the world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/share the world.txt -------------------------------------------------------------------------------- /data/全新世界.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/全新世界.txt -------------------------------------------------------------------------------- /data/冒险世界.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/冒险世界.txt -------------------------------------------------------------------------------- /data/向著阳光.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/向著阳光.txt -------------------------------------------------------------------------------- /data/心的地图.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/心的地图.txt -------------------------------------------------------------------------------- /data/未来航海.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/未来航海.txt -------------------------------------------------------------------------------- /data/永久指针.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/永久指针.txt -------------------------------------------------------------------------------- /data/疯狂彩虹.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/data/疯狂彩虹.txt -------------------------------------------------------------------------------- /fonts/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/fonts/simhei.ttf -------------------------------------------------------------------------------- /gif_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gif_example.py -------------------------------------------------------------------------------- /gif_example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gif_example2.py -------------------------------------------------------------------------------- /gifs/ace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/ace.gif -------------------------------------------------------------------------------- /gifs/one_piece/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/a.jpg -------------------------------------------------------------------------------- /gifs/one_piece/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/b.jpg -------------------------------------------------------------------------------- /gifs/one_piece/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/c.jpg -------------------------------------------------------------------------------- /gifs/one_piece/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/d.jpg -------------------------------------------------------------------------------- /gifs/one_piece/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/e.jpg -------------------------------------------------------------------------------- /gifs/one_piece/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/f.jpg -------------------------------------------------------------------------------- /gifs/one_piece/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/g.jpg -------------------------------------------------------------------------------- /gifs/one_piece/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/gifs/one_piece/h.jpg -------------------------------------------------------------------------------- /images/luffy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/images/luffy.png -------------------------------------------------------------------------------- /images/tony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/images/tony.png -------------------------------------------------------------------------------- /luffy_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/luffy_result.png -------------------------------------------------------------------------------- /output/ace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/output/ace.gif -------------------------------------------------------------------------------- /output/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/output/happy.png -------------------------------------------------------------------------------- /output/luffy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/output/luffy.png -------------------------------------------------------------------------------- /output/one_piece.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/output/one_piece.gif -------------------------------------------------------------------------------- /output/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/output/sad.png -------------------------------------------------------------------------------- /output/tony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/output/tony.png -------------------------------------------------------------------------------- /qiaoba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/qiaoba.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/requirements.txt -------------------------------------------------------------------------------- /save_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/save_example.py -------------------------------------------------------------------------------- /sentiment/BosonNLP_sentiment_score.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment/BosonNLP_sentiment_score.txt -------------------------------------------------------------------------------- /sentiment/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment/happy.png -------------------------------------------------------------------------------- /sentiment/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment/license.txt -------------------------------------------------------------------------------- /sentiment/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment/readme.txt -------------------------------------------------------------------------------- /sentiment/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment/sad.png -------------------------------------------------------------------------------- /sentiment_analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment_analyser.py -------------------------------------------------------------------------------- /sentiment_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/sentiment_example.py -------------------------------------------------------------------------------- /show_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/show_example.py -------------------------------------------------------------------------------- /weibo/happy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/weibo/happy.txt -------------------------------------------------------------------------------- /weibo/sad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/weibo/sad.txt -------------------------------------------------------------------------------- /words_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flingjie/words_image/HEAD/words_image.py --------------------------------------------------------------------------------