System.Drawing.Common 9.0.0-preview.3.24172.9

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:

Feedback

Showing the top 20 packages that depend on System.Drawing.Common.

Packages Downloads
DocX
DocX is a .NET library that allows developers to manipulate Microsoft Word files, in an easy and intuitive manner. DocX is fast, lightweight and best of all it does not require Microsoft Word or Office to be installed. v2.4.0 provides 14 bug fixes and improvements. Check out the professional edition, known as Xceed Words for .NET, on Xceed.com. It includes technical support, offer more features and options, and can create PDF files as well as convert Word files to PDF files.
93
EPPlus
Create advanced Excel spreadsheets using .NET
1,813
EPPlus.System.Drawing
Package Description
1,615
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.
50
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.
53
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 Core as well as .NET Standard. 8f968b9e79c5721d78cc88e46fe57457fe9d490d When using NuGet 3.x this package requires at least version 3.4.
50
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 Core as well as .NET Standard. When using NuGet 3.x this package requires at least version 3.4.
53
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 Core as well as .NET Standard. When using NuGet 3.x this package requires at least version 3.4.
54
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag
58
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag
61
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag
64
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag
70
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag When using NuGet 3.x this package requires at least version 3.4.
52
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag When using NuGet 3.x this package requires at least version 3.4.
55
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag When using NuGet 3.x this package requires at least version 3.4.
58
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag When using NuGet 3.x this package requires at least version 3.4.
60
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag When using NuGet 3.x this package requires at least version 3.4.
65
System.Windows.Extensions
Provides miscellaneous Windows-specific types Commonly Used Types: System.Security.Cryptography.X509Certificates.X509Certificate2UI System.Security.Cryptography.X509Certificates.X509SelectionFlag When using NuGet 3.x this package requires at least version 3.4.
21,075

.NET Framework 4.6.2

  • No dependencies.

.NET 8.0

.NET 9.0

.NET Standard 2.0

  • No dependencies.

Version Downloads Last updated
9.0.0-preview.3.24172.9 2 04/17/2024
9.0.0-preview.2.24128.3 3 03/13/2024
9.0.0-preview.1.24081.2 5 03/04/2024
8.0.4 2 04/15/2024
8.0.3 4 03/13/2024
8.0.2 2 03/11/2024
8.0.1 3 03/11/2024
8.0.0 5 11/14/2023
8.0.0-rc.2.23479.14 4 10/12/2023
8.0.0-rc.1.23419.5 3 09/20/2023
8.0.0-preview.7.23375.5 6 09/08/2023
8.0.0-preview.6.23329.4 33 09/11/2023
8.0.0-preview.5.23280.5 12 06/29/2023
8.0.0-preview.4.23259.4 6 07/02/2023
8.0.0-preview.2.23128.3 31 05/17/2023
8.0.0-preview.1.23110.8 16 07/02/2023
7.0.0 16 05/12/2023
7.0.0-rc.2.22472.3 29 10/13/2022
7.0.0-rc.1.22426.10 15 09/23/2022
7.0.0-preview.7.22375.6 15 08/13/2022
7.0.0-preview.6.22324.4 13 09/21/2022
7.0.0-preview.5.22301.12 20 09/24/2022
7.0.0-preview.4.22229.4 15 06/01/2023
7.0.0-preview.3.22175.4 16 09/11/2023
7.0.0-preview.2.22152.2 15 05/31/2023
7.0.0-preview.1.22076.8 6 09/06/2023
6.0.2-mauipre.1.22102.15 13 09/21/2022
6.0.2-mauipre.1.22054.8 11 09/23/2022
6.0.0 20 09/11/2022
6.0.0-rc.2.21480.5 15 09/22/2022
6.0.0-rc.1.21451.13 20 09/21/2022
6.0.0-preview.7.21377.19 17 09/21/2022
6.0.0-preview.6.21352.12 37 09/23/2022
6.0.0-preview.5.21301.5 31 09/23/2022
6.0.0-preview.4.21253.7 17 09/22/2022
6.0.0-preview.3.21201.4 5 09/23/2022
6.0.0-preview.2.21154.6 15 06/30/2023
6.0.0-preview.1.21102.12 13 09/22/2022
5.0.3 8 09/12/2022
5.0.2 260 09/10/2022
5.0.1 9 09/12/2022
5.0.0 1,590 09/15/2022
5.0.0-rc.2.20475.5 18 06/12/2023
5.0.0-rc.1.20451.14 25 07/12/2023
5.0.0-preview.8.20407.11 31 09/21/2022
5.0.0-preview.7.20364.11 31 09/22/2022
5.0.0-preview.6.20305.6 3 09/11/2023
5.0.0-preview.5.20278.1 10 07/24/2023
5.0.0-preview.4.20251.6 14 06/04/2023
5.0.0-preview.3.20214.6 27 09/22/2022
5.0.0-preview.2.20160.6 6 09/23/2022
5.0.0-preview.1.20120.5 19 09/24/2022
4.7.3 19 09/11/2022
4.7.2 19 09/09/2022
4.7.1 14 09/14/2022
4.7.0 21,046 06/27/2022
4.7.0-preview3.19551.4 13 09/10/2023
4.7.0-preview2.19523.17 18 09/25/2022
4.7.0-preview1.19504.10 21 09/26/2022
4.6.2 10 09/12/2022
4.6.1 37 08/25/2022
4.6.0 23 09/17/2022
4.6.0-rc1.19456.4 34 09/24/2022
4.6.0-preview9.19421.4 19 07/28/2022
4.6.0-preview9.19416.11 29 09/22/2022
4.6.0-preview8.19405.3 15 09/24/2022
4.6.0-preview7.19362.9 17 06/20/2023
4.6.0-preview6.19303.8 19 09/22/2022
4.6.0-preview6.19264.9 15 09/09/2023
4.6.0-preview5.19224.8 22 01/07/2023
4.6.0-preview4.19212.13 12 09/22/2022
4.6.0-preview3.19128.7 29 09/22/2022
4.6.0-preview.19073.11 11 09/25/2022
4.6.0-preview.18571.3 15 09/22/2022
4.5.2 15 09/15/2022
4.5.1 15 09/09/2022
4.5.0 18 06/27/2022
4.5.0-rc1 10 06/28/2023
4.5.0-preview2-26406-04 23 09/26/2022
4.5.0-preview1-26216-02 9 09/21/2022
4.5.0-preview1-25914-04 12 09/12/2023
4.5.0-preview1-25718-03 21 09/23/2022