System.Drawing.Common
10.0.0-preview.3.25173.2
Prefix Reserved
dotnet add package System.Drawing.Common --version 10.0.0-preview.3.25173.2
NuGet\Install-Package System.Drawing.Common -Version 10.0.0-preview.3.25173.2
<PackageReference Include="System.Drawing.Common" Version="10.0.0-preview.3.25173.2" />
<PackageVersion Include="System.Drawing.Common" Version="10.0.0-preview.3.25173.2" />
<PackageReference Include="System.Drawing.Common" />
paket add System.Drawing.Common --version 10.0.0-preview.3.25173.2
#r "nuget: System.Drawing.Common, 10.0.0-preview.3.25173.2"
#addin nuget:?package=System.Drawing.Common&version=10.0.0-preview.3.25173.2&prerelease
#tool nuget:?package=System.Drawing.Common&version=10.0.0-preview.3.25173.2&prerelease
System.Drawing.Common
The System.Drawing.Common
package allows .NET Core and .NET 6+ applications to access GDI+ graphics functionality.
This package is especially useful for porting .NET Framework applications that rely on the System.Drawing
namespace.
Getting Started
To get started with System.Drawing.Common
, install it using the NuGet Package Manager, the .NET CLI, or by editing your project file directly.
NOTE: If you are developing a WinForms application, you do not need to install the System.Drawing.Common
package separately (to this end, you use the Sdk
attribute for the Project
element like <Project Sdk="Microsoft.NET.Sdk">
in the .csproj or the .vbproj file and then specify <UseWindowsForms>true</UseWindowsForms>
). This package is then automatically included as part of the .NET SDK for WinForms Apps, which means you can start using the System.Drawing
namespace right away in your WinForms projects.
Usage
The following examples demonstrate some basic tasks you can accomplish with System.Drawing.Common
.
Create a Simple Bitmap and Save it
C#
using System.Drawing;
class Program
{
static void Main()
{
using (Bitmap bitmap = new Bitmap(100, 100))
{
using (Graphics g = Graphics.FromImage(bitmap))
{
g.Clear(Color.Red);
}
bitmap.Save("output.bmp");
}
}
}
VB
Imports System.Drawing
Module Program
Sub Main()
Using bitmap As New Bitmap(100, 100)
Using g As Graphics = Graphics.FromImage(bitmap)
g.Clear(Color.Red)
End Using
bitmap.Save("output.bmp")
End Using
End Sub
End Module
Additional Documentation
For more in-depth tutorials and API references, you can check the following resources:
- NuGet Gallery | System.Drawing.Common
- System.Drawing.Common Namespace | Microsoft Docs
- Drawing with System.Drawing.Common | Microsoft Learn
Feedback
- Open an issue on the GitHub repository
- Reach out on Twitter with the hashtag #winforms
- Join our Discord channel: dotnet/Discord
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 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. |
.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 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. monoandroid10 is compatible. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. monotouch10 is compatible. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. xamarinios10 is compatible. |
Xamarin.Mac | xamarinmac was computed. xamarinmac20 is compatible. |
Xamarin.TVOS | xamarintvos was computed. xamarintvos10 is compatible. |
Xamarin.WatchOS | xamarinwatchos was computed. xamarinwatchos10 is compatible. |
-
.NETFramework 4.6.2
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net10.0
- Microsoft.Win32.SystemEvents (>= 10.0.0-preview.3.25171.5)
-
net8.0
- Microsoft.Win32.SystemEvents (>= 10.0.0-preview.3.25171.5)
-
net9.0
- Microsoft.Win32.SystemEvents (>= 10.0.0-preview.3.25171.5)
NuGet packages (5.7K)
Showing the top 5 NuGet packages that depend on System.Drawing.Common:
Package | Downloads |
---|---|
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard. |
|
CompareNETObjects
What you have been waiting for. Perform a deep compare of any two .NET objects using reflection. Shows the differences between the two objects. |
|
QRCoder
QRCoder is a simple library, written in C#.NET, which enables you to create QR codes. |
|
Aspose.PDF
Aspose.PDF for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework). Aspose.PDF for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or insert pages; transform pages to image; print PDF documents and much more. |
|
Aspose.Cells
A powerful and fast library written in C# for manipulating and converting Excel(XLS, XLSX,XLSB), ODS, CSV,JSON and HTML files. |
GitHub repositories (512)
Showing the top 20 popular GitHub repositories that depend on System.Drawing.Common:
Repository | Stars |
---|---|
microsoft/PowerToys
Windows system utilities to maximize productivity
|
|
PowerShell/PowerShell
PowerShell for every system!
|
|
NickeManarin/ScreenToGif
🎬 ScreenToGif allows you to record a selected area of your screen, edit and save it as a gif or video.
|
|
BeyondDimension/SteamTools
🛠「Watt Toolkit」是一个开源跨平台的多功能 Steam 工具箱。
|
|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
|
dotnet/runtime
.NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.
|
|
rocksdanister/lively
Free and open-source software that allows users to set animated desktop wallpapers and screensavers powered by WinUI 3.
|
|
marticliment/UniGetUI
UniGetUI: The Graphical Interface for your package managers. Could be terribly described as a package manager manager to manage your package managers
|
|
duplicati/duplicati
Store securely encrypted backups in the cloud!
|
|
dotnet/BenchmarkDotNet
Powerful .NET library for benchmarking
|
|
dotnet/orleans
Cloud Native application framework for .NET
|
|
MathewSachin/Captura
Capture Screen, Audio, Cursor, Mouse Clicks and Keystrokes
|
|
SubtitleEdit/subtitleedit
the subtitle editor :)
|
|
Flow-Launcher/Flow.Launcher
:mag: Quick file search & app launcher for Windows with community-made plugins
|
|
mRemoteNG/mRemoteNG
mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager.
|
|
quasar/Quasar
Remote Administration Tool for Windows
|
|
JeffreySu/WeiXinMPSDK
微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
|
|
lepoco/wpfui
WPF UI provides the Fluent experience in your known and loved WPF framework. Intuitive design, themes, navigation and new immersive controls. All natively and effortlessly.
|
|
SixLabors/ImageSharp
:camera: A modern, cross-platform, 2D Graphics library for .NET
|
|
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.3.25173.2 | 4,348 | 19 days ago | |
10.0.0-preview.2.25163.9 | 7,442 | a month ago | |
10.0.0-preview.1.25080.3 | 7,912 | 2 months ago | |
9.0.4 | 249,638 | 21 days ago | |
9.0.3 | 549,139 | 2 months ago | |
9.0.2 | 829,003 | 3 months ago | |
9.0.1 | 1,153,812 | 3 months ago | |
9.0.0 | 2,381,140 | 6 months ago | |
9.0.0-rc.2.24474.1 | 49,683 | 7 months ago | |
9.0.0-rc.1.24451.1 | 28,071 | 8 months ago | |
9.0.0-preview.7.24405.4 | 15,154 | 9 months ago | |
9.0.0-preview.6.24327.6 | 499,236 | 10 months ago | |
9.0.0-preview.5.24306.5 | 30,001 | 6/11/2024 | |
9.0.0-preview.4.24267.1 | 10,596 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 30,548 | 4/11/2024 | |
9.0.0-preview.2.24128.3 | 12,198 | 3/12/2024 | |
9.0.0-preview.1.24081.2 | 29,882 | 2/13/2024 | |
8.0.15 | 41,544 | 21 days ago | |
8.0.14 | 186,682 | 2 months ago | |
8.0.13 | 201,960 | 3 months ago | |
8.0.12 | 545,592 | 3 months ago | |
8.0.11 | 1,281,343 | 6 months ago | |
8.0.10 | 4,285,132 | 7 months ago | |
8.0.8 | 4,638,482 | 9 months ago | |
8.0.7 | 3,209,604 | 10 months ago | |
8.0.6 | 3,939,548 | 5/28/2024 | |
8.0.5 | 1,202,447 | 5/14/2024 | |
8.0.4 | 5,041,149 | 4/9/2024 | |
8.0.3 | 2,264,626 | 3/12/2024 | |
8.0.2 | 3,025,768 | 2/13/2024 | |
8.0.1 | 4,036,608 | 1/9/2024 | |
8.0.0 | 12,229,092 | 11/14/2023 | |
8.0.0-rc.2.23479.14 | 84,842 | 10/10/2023 | |
8.0.0-rc.1.23419.5 | 27,672 | 9/12/2023 | |
8.0.0-preview.7.23375.5 | 71,454 | 8/8/2023 | |
8.0.0-preview.6.23329.4 | 683 | 8/8/2023 | |
8.0.0-preview.5.23280.5 | 45,591 | 6/23/2023 | |
8.0.0-preview.4.23259.4 | 7,181 | 6/23/2023 | |
8.0.0-preview.2.23128.3 | 103,401 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 82,794 | 2/21/2023 | |
7.0.0 | 106,765,983 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 186,628 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 162,814 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 57,732 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 81,639 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 45,621 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 42,634 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 110,290 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 45,065 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 37,338 | 2/17/2022 | |
6.0.0 | 410,572,690 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 86,963 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 94,627 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 701,624 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 98,826 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 88,157 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 75,666 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 232,634 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 99,912 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 174,987 | 2/12/2021 | |
5.0.3 | 23,261,651 | 11/7/2021 | |
5.0.2 | 34,539,553 | 3/9/2021 | |
5.0.1 | 3,764,944 | 2/9/2021 | |
5.0.0 | 365,743,620 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 147,617 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 128,396 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 194,198 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 141,281 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 120,743 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 40,595 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 138,357 | 5/18/2020 | |
5.0.0-preview.3.20214.6 | 84,742 | 4/23/2020 | |
5.0.0-preview.2.20160.6 | 85,591 | 4/2/2020 | |
5.0.0-preview.1.20120.5 | 51,232 | 3/16/2020 | |
4.7.3 | 7,635,990 | 11/7/2021 | |
4.7.2 | 42,052,079 | 2/9/2021 | |
4.7.1 | 4,662,548 | 11/9/2020 | |
4.7.0 | 598,814,039 | 12/3/2019 | |
4.7.0-preview3.19551.4 | 60,049 | 11/13/2019 | |
4.7.0-preview2.19523.17 | 30,919 | 11/1/2019 | |
4.7.0-preview1.19504.10 | 33,410 | 10/15/2019 | |
4.6.2 | 52,938 | 1/14/2020 | |
4.6.1 | 2,396,274 | 11/18/2019 | |
4.6.0 | 63,527,959 | 9/23/2019 | |
4.6.0-rc1.19456.4 | 79,416 | 9/16/2019 | |
4.6.0-preview9.19421.4 | 29,154 | 9/4/2019 | |
4.6.0-preview9.19416.11 | 1,269 | 9/4/2019 | |
4.6.0-preview8.19405.3 | 303,467 | 8/13/2019 | |
4.6.0-preview7.19362.9 | 90,595 | 7/23/2019 | |
4.6.0-preview6.19303.8 | 14,557,558 | 6/12/2019 | |
4.6.0-preview6.19264.9 | 1,233 | 9/4/2019 | |
4.6.0-preview5.19224.8 | 161,657 | 5/6/2019 | |
4.6.0-preview4.19212.13 | 23,148 | 4/18/2019 | |
4.6.0-preview3.19128.7 | 346,692 | 3/6/2019 | |
4.6.0-preview.19073.11 | 55,115 | 1/29/2019 | |
4.6.0-preview.18571.3 | 107,514 | 12/3/2018 | |
4.5.2 | 74,946 | 2/9/2021 | |
4.5.1 | 54,842,044 | 10/1/2018 | |
4.5.0 | 109,808,645 | 5/29/2018 | |
4.5.0-rc1 | 185,741 | 5/6/2018 | |
4.5.0-preview2-26406-04 | 870,770 | 4/10/2018 | |
4.5.0-preview1-26216-02 | 1,444,626 | 2/26/2018 | |
4.5.0-preview1-25914-04 | 13,658,273 | 11/15/2017 | |
4.5.0-preview1-25718-03 | 66,111 | 9/19/2017 |