BoDraw 1.0.49

dotnet add package BoDraw --version 1.0.49
                    
NuGet\Install-Package BoDraw -Version 1.0.49
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BoDraw" Version="1.0.49" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BoDraw" Version="1.0.49" />
                    
Directory.Packages.props
<PackageReference Include="BoDraw" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BoDraw --version 1.0.49
                    
#r "nuget: BoDraw, 1.0.49"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BoDraw@1.0.49
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BoDraw&version=1.0.49
                    
Install as a Cake Addin
#tool nuget:?package=BoDraw&version=1.0.49
                    
Install as a Cake Tool

BoDraw

BoDraw is a simple drawing library for .NET.

Installation

dotnet add package BoDraw

Example

using BoDraw;

Text text = new Text("BoDraw is a simple drawing library...", -20, -40);
Image image = new Image("assets/hs-bo_logo_en.png", 0, 0, 400);
Rectangle rectangle = new Rectangle(-20, -20, image.Width + 20, image.Height + 20);

rectangle.LineThickness = 3;
rectangle.FillColor = Colors.LightSkyBlue;
rectangle.LineColor = Colors.DarkOrchid;
text.Color = Colors.DarkOliveGreen;

BoDrawApp bd = new BoDrawApp();
bd.Add(text, rectangle, image);
bd.Show();

Shapes

Class Description
Line Line between two points
Polyline Polyline through multiple points
Polygon Filled polygon
Rectangle Rectangle
Circle Circle
Ellipse Ellipse
Text Text at a position
Image Raster image loaded from a file

Coordinate system

The Y-axis points upward (mathematical convention).

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on BoDraw:

Package Downloads
BoDraw.App

Simple library for drawings

BoDraw.Interactive

Simple library for drawings

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.49 0 9/15/2026
1.0.48 0 9/15/2026
1.0.47 158 8/5/2026
1.0.46 109 8/5/2026
1.0.44 173 7/1/2026
1.0.43 158 6/24/2026
1.0.42 131 6/23/2026
1.0.41 138 6/23/2026
1.0.40 131 6/22/2026
1.0.38 162 6/18/2026
1.0.37 142 6/18/2026
1.0.36 159 6/12/2026
1.0.35 136 6/11/2026
1.0.34 192 5/29/2026
1.0.33 140 5/27/2026
1.0.32 129 5/26/2026
1.0.28 124 5/26/2026
1.0.27 168 5/7/2026
1.0.26 133 5/7/2026
1.0.25 117 5/7/2026
Loading failed