# WordCloudHelper **Repository Path**: HTKing/WordCloudHelper ## Basic Information - **Project Name**: WordCloudHelper - **Description**: 文字云生产类(.net) - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-01-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WordCloudHelper 文字云生成类(.net) 示例: ``` //width 文字云生成宽度 //height 生成高度 //lstWord 文字云列表 //lstFreqs 文字云对应单词个数(如果不传该参数则默认使用lstWord的重复个数为权重,如果传此参数,则lstword和lstFreqs一一对应) WordCloud word = new WordCloud(width, height, true); var img = word.Draw(lstWord); //var img = word.Draw(lstWord,lstFreqs); ``` ![示例](https://gitee.com/uploads/images/2018/0118/105745_5e62abac_726804.jpeg "1.jpg")