golang實現文字雲演算法

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

golang版本的文字雲演算法實現

項目連結

https://github.com/bangbaoshi/wordcloud

測試步驟如下

git clone https://github.com/bangbaoshi/wordcloud.gitcd wordcloudgo run boot/main.go

通過以上三步即可在imgs目錄中產生文字雲圖片(查看imgs/out.png)

目錄介紹

  1. boot目錄包含測試案例
  2. fonts目錄包含若干種字型(非商業使用)
  3. imgs目錄包含模板圖片,文字雲產生的就是按照模板圖片的樣子來產生

使用說明

boot/main.go中已經簡單介紹了使用方法

package mainimport ("image/color""github.com/bangbaoshi/wordcloud")func renderNow() {//需要寫入的文本數組textList := []string{"恭喜", "發財", "萬事", "如意"}//文本角度數組angles := []int{0, 15, -15, 90}//文本顏色數組colors := []*color.RGBA{&color.RGBA{0x0, 0x60, 0x30, 0xff},&color.RGBA{0x60, 0x0, 0x0, 0xff},&color.RGBA{0x73, 0x73, 0x0, 0xff},}//設定對應的字型路徑,和輸出路徑render := wordcloud_go.NewWordCloudRender(60, 8,"./fonts/xin_shi_gu_yin.ttf","./imgs/tiger.png", textList, angles, colors, "./imgs/out.png")//開始渲染render.Render()}func main() {renderNow()}

項目介紹

  1. 使用golang語言實現了文字雲演算法
  2. 用golang實現一些有趣的想法
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.