Created
December 18, 2019 14:32
-
-
Save PrateekKumarSingh/9c6d97fa335a993932a1c07bd9e03bac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-Module PSWordCloud -Scope CurrentUser | |
Import-Module PSWordCloud | |
# build a word cloud from these key phrases | |
$Path = "$env:TEMP\wordcloud.svg" | |
$Params = @{` | |
Path = $Path | |
Typeface = 'Consolas' | |
ImageSize = '3000x2000' | |
AllowRotation = 'None' | |
Padding = 5 | |
StrokeWidth = 1 | |
} | |
# generate word cloud using 'PSWordCloud' module | |
$Words | New-WordCloud @Params | |
Start-Process Chrome $Path |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment