KnowledgePicker.WordCloud
1.1.0
See the version list below for details.
dotnet add package KnowledgePicker.WordCloud --version 1.1.0
NuGet\Install-Package KnowledgePicker.WordCloud -Version 1.1.0
<PackageReference Include="KnowledgePicker.WordCloud" Version="1.1.0" />
paket add KnowledgePicker.WordCloud --version 1.1.0
#r "nuget: KnowledgePicker.WordCloud, 1.1.0"
// Install KnowledgePicker.WordCloud as a Cake Addin #addin nuget:?package=KnowledgePicker.WordCloud&version=1.1.0 // Install KnowledgePicker.WordCloud as a Cake Tool #tool nuget:?package=KnowledgePicker.WordCloud&version=1.1.0
WordCloud for .NET
KnowledgePicker.WordCloud
is a modern (.NET Standard 2.0) and fast library for arranging and drawing word clouds (a.k.a. tag clouds or wordle). It uses Quadtrees for blazing-fast performance. It is maintained by the KnowledgePicker team.
How to use
Get collection of
WordCloudEntry
s. For example, suppose we have dictionary of word frequencies:var frequencies = new Dictionary<string, int>(); // ...collect word frequencies somehow... IEnumerable<WordCloudEntry> wordEntries = frequencies.Select(p => new WordCloudEntry(p.Key, p.Value));
Create world cloud configuration:
var wordCloud = new WordCloudInput(wordEntries) { Width = 1024, Height = 256, MinFontSize = 8, MaxFontSize = 32 };
We need to create drawing engine, font sizer and layout. Currently, we use SkiaSharp for fast cross-platform font measuring (and drawing). We also only support logarithmic font sizes and spiral layout. All these things are implemented in a generic way and can be easily extended (contributions are welcome).
var sizer = new LogSizer(wordCloud); using var engine = new SkGraphicEngine(sizer, wordCloud); var layout = new SpiralLayout(wordCloud); var colorizer = new RandomColorizer(); // optional var wcg = new WordCloudGenerator<SKBitmap>(wordCloud, engine, layout, colorizer);
Now we can arrange the topic cloud:
IEnumerable<(LayoutItem Item, double FontSize)> items = wcg.Arrange();
And if we are in a Razor view of an ASP.NET Core application, for example, we can generate SVG from
items
:<svg viewBox="0,0,@wordCloud.Width,@wordCloud.Height"> @foreach (var (item, fontSize) in items) { const string format = "0.##"; // Use at most 2 decimal places. var x = (item.Location.X - item.Measured.Left).ToString(format); var y = (item.Location.Y - item.Measured.Top).ToString(format); var fs = fontSize.ToString(format); <text transform="translate(@x, @y)" font-size="@fs">@item.Entry.Word</text> } </svg>
Alternatively, we can draw the topic cloud (see also example
WordFrequencies.ConsoleApp
):using var bitmap = new SKBitmap(wordCloud.Width, wordCloud.Height); using var canvas = new SKCanvas(bitmap); // Draw on white background. canvas.Clear(SKColors.White); canvas.DrawBitmap(wcg.Draw(), 0, 0); // Save to PNG. using var data = final.Encode(SKEncodedImageFormat.Png, 100); using var writer = File.Create("output.png"); data.SaveTo(writer);
Algorithm
The world cloud algorithm was initially ported from SourceCodeCloud. It uses Quadtrees, hence it should be reasonably fast. It is inspired by implementation of Wordle (once famous algorithm used on now-defunct site wordle.net).
Examples
Simple console application which draws word cloud PNG for words given on its standard input is WordFrequencies.ConsoleApp
.
This library is also used in production by KnowledgePicker. They use it to draw topic clouds for user profiles.
Contributing
As mentioned above, only subset of functionality is implemented now, but all contributions are welcome. Feel free to open issues and pull requests.
Creating NuGet package
Until we have a CI pipeline, this is how we release new version of the package (don't forget to replace 1.0.0 with the correct version):
cd src/KnowledgePicker.WordCloud
dotnet pack -c Release --include-symbols --include-source -p:PackageVersion=1.0.0
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- SkiaSharp (>= 2.80.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.