KGySoft.Drawing.Core
8.2.0
dotnet add package KGySoft.Drawing.Core --version 8.2.0
NuGet\Install-Package KGySoft.Drawing.Core -Version 8.2.0
<PackageReference Include="KGySoft.Drawing.Core" Version="8.2.0" />
paket add KGySoft.Drawing.Core --version 8.2.0
#r "nuget: KGySoft.Drawing.Core, 8.2.0"
// Install KGySoft.Drawing.Core as a Cake Addin #addin nuget:?package=KGySoft.Drawing.Core&version=8.2.0 // Install KGySoft.Drawing.Core as a Cake Tool #tool nuget:?package=KGySoft.Drawing.Core&version=8.2.0
KGy SOFT Drawing Core Libraries offer advanced drawing features for completely managed bitmap data on multiple platforms.
Among others:
- Creating managed bitmap data of any pixel format on every platform, including Linux and MacOS
- Creating bitmap data for any preallocated buffer using any pixel format. This allows accessing the pixels of bitmaps of any technology if the bitmap data is exposed as a pointer or array.
- Supporting color correct alpha blending.
- Quantizing using predefined or optimized colors
- Dithering using ordered, error diffusion, random noise or interleaved gradient noise dithering techniques
- Creating GIF animations even in high color
See the online help for the complete documentation or the project site for some highlighted code examples.
💡 Tip:
- Feel free to explore the application examples to see how to use KGy SOFT Drawing Libraries in various environments such as MAUI, UWP, WinForms, WinUI, WPF and Xamarin.
- For GDI+ specific solutions see the KGySoft.Drawing package. It makes possible to create managed, fast accessible bitmap data for the
Bitmap
class, supporting all pixel formats. It also contains many extensions for the Icon, Bitmap, Image, Metafile and Graphics types.- For WPF specific solutions see the KGySoft.Drawing.Wpf package. It makes possible to obtain managed, fast accessible bitmap data for a
WriteableBitmap
instance of any pixel format, offering all features of anIReadWriteBitmapData
for aWriteableBitmap
. It also offers extension methods for theBitmapSource
class.- For dedicated UWP support see the KGySoft.Drawing.Uwp package.
- For dedicated WinUI support see the KGySoft.Drawing.WinUI package.
- For SkiaSharp specific solutions see the KGySoft.Drawing.SkiaSharp package. It makes possible to obtain managed, fast accessible bitmap data for
SKBitmap
andSKPixmap
instances of any pixel format, offering allIReadWriteBitmapData
features for them. It also offers extension methods for theSKImage
,SKSurface
,SKBitmap
,SKPixmap
andSKImageInfo
classes.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. 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. |
.NET Core | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 is compatible. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net35 is compatible. net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 is compatible. 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. |
-
.NETCoreApp 2.0
- KGySoft.CoreLibraries (>= 8.3.0)
-
.NETCoreApp 3.0
- KGySoft.CoreLibraries (>= 8.3.0)
-
.NETFramework 3.5
- KGySoft.CoreLibraries (>= 8.3.0)
-
.NETFramework 4.0
- KGySoft.CoreLibraries (>= 8.3.0)
-
.NETFramework 4.5
- KGySoft.CoreLibraries (>= 8.3.0)
- System.Numerics.Vectors (>= 4.5.0)
-
.NETFramework 4.6
- KGySoft.CoreLibraries (>= 8.3.0)
-
.NETStandard 2.0
- KGySoft.CoreLibraries (>= 8.3.0)
- System.Numerics.Vectors (>= 4.5.0)
-
.NETStandard 2.1
- KGySoft.CoreLibraries (>= 8.3.0)
-
net5.0
- KGySoft.CoreLibraries (>= 8.3.0)
-
net6.0
- KGySoft.CoreLibraries (>= 8.3.0)
-
net8.0
- KGySoft.CoreLibraries (>= 8.3.0)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on KGySoft.Drawing.Core:
Package | Downloads |
---|---|
KGySoft.Drawing
KGy SOFT Drawing Libraries offer advanced features built around System.Drawing types. Among others: - Fast direct native Bitmap data access for every PixelFormat - Quantizing and dithering - Creating GIF animations - Several built-in icons as well as simple access to Windows associated and stock icons. - Extracting bitmaps from multi-frame bitmaps and icons. - Creating combined icons and multi-resolution bitmaps. - Saving metafiles in EMF/WMF formats. - Advanced support for saving images as Icon, BMP, JPEG, PNG, GIF and TIFF formats. - Converting between various pixel formats preserving transparency if possible. - Useful extensions for the Icon, Bitmap, Image, Metafile and Graphics types. Demo Applications: https://github.com/koszeggy/KGySoft.Drawing/tree/master/Examples Real-Life Example and Debugger Visualizers: https://github.com/koszeggy/KGySoft.Drawing.Tools Online Documentation: https://docs.kgysoft.net/drawing See Also: Technology-agnostic core drawing libraries: https://www.nuget.org/packages/KGySoft.Drawing.Core/ WPF specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Wpf/ UWP specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Uwp/ WinUI specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.WinUI/ SkiaSharp specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.SkiaSharp/ |
|
KGySoft.Drawing.Wpf
KGy SOFT Drawing Libraries for WPF offer KGySoft.Drawing.Core features for System.Windows.Media.WriteableBitmap. Among others: - Fast direct native WriteableBitmap data access - Fast read-only access to any BitmapSource of any pixel format - Supporting every PixelFormat - Converting between various pixel formats preserving transparency if possible. Demo Applications: https://github.com/koszeggy/KGySoft.Drawing/tree/master/Examples Real-Life Example and Debugger Visualizers: https://github.com/koszeggy/KGySoft.Drawing.Tools Online Documentation: https://docs.kgysoft.net/drawing See Also: Technology-agnostic core drawing libraries: https://www.nuget.org/packages/KGySoft.Drawing.Core/ GDI+ specific libraries: https://www.nuget.org/packages/KGySoft.Drawing/ UWP specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Uwp/ WinUI specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.WinUI/ SkiaSharp specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.SkiaSharp/ |
|
KGySoft.Drawing.SkiaSharp
KGy SOFT Drawing Libraries for SkiaSkarp offer KGySoft.Drawing.Core features for SkiaSharp types. Among others: - Fast direct native SKBitmap and SKPixmap data access of any pixel format - Read-only access to SKImage instances - Read-write access to SKSurface instances - Supporting every SKColorType and SKAlphaType - Converting between various pixel formats preserving transparency if possible. Demo Applications: https://github.com/koszeggy/KGySoft.Drawing/tree/master/Examples Real-Life Example and Debugger Visualizers: https://github.com/koszeggy/KGySoft.Drawing.Tools Online Documentation: https://docs.kgysoft.net/drawing See Also: Technology-agnostic core drawing libraries: https://www.nuget.org/packages/KGySoft.Drawing.Core/ GDI+ specific libraries: https://www.nuget.org/packages/KGySoft.Drawing/ WPF specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Wpf/ UWP specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Uwp/ WinUI specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.WinUI/ |
|
KGySoft.Drawing.WinUI
KGy SOFT Drawing Libraries for WinUI offer KGySoft.Drawing.Core features for Microsoft.UI.Xaml.Media.Imaging.WriteableBitmap. This library requires targeting at least Windows 10.0.17763.0 (October 2018 release, version 1809). Demo Applications: https://github.com/koszeggy/KGySoft.Drawing/tree/master/Examples Real-Life Example and Debugger Visualizers: https://github.com/koszeggy/KGySoft.Drawing.Tools Online Documentation: https://docs.kgysoft.net/drawing See Also: Technology-agnostic core drawing libraries: https://www.nuget.org/packages/KGySoft.Drawing.Core/ GDI+ specific libraries: https://www.nuget.org/packages/KGySoft.Drawing/ WPF specific drawing libraries: https://www.nuget.org/packages/KGySoft.Drawing.Wpf/ UWP specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Uwp/ SkiaSharp specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.SkiaSharp/ |
|
KGySoft.Drawing.Uwp
KGy SOFT Drawing Libraries for UWP offer KGySoft.Drawing.Core features for Windows.UI.Xaml.Media.Imaging.WriteableBitmap. This library requires targeting at least Windows 10.0.16299.0 (Fall Creators Update, version 1709) so it can reference the .NET Standard 2.0 version of the dependent core libraries. Demo Applications: https://github.com/koszeggy/KGySoft.Drawing/tree/master/Examples Real-Life Example and Debugger Visualizers: https://github.com/koszeggy/KGySoft.Drawing.Tools Online Documentation: https://docs.kgysoft.net/drawing See Also: Technology-agnostic core drawing libraries: https://www.nuget.org/packages/KGySoft.Drawing.Core/ GDI+ specific libraries: https://www.nuget.org/packages/KGySoft.Drawing/ WPF specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.Wpf/ WinUI specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.WinUI/ SkiaSharp specific libraries: https://www.nuget.org/packages/KGySoft.Drawing.SkiaSharp/ |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on KGySoft.Drawing.Core:
Repository | Stars |
---|---|
NickeManarin/ScreenToGif
🎬 ScreenToGif allows you to record a selected area of your screen, edit and save it as a gif or video.
|
|
LykosAI/StabilityMatrix
Multi-Platform Package Manager for Stable Diffusion
|
|
SafeExamBrowser/seb-win-refactoring
Safe Exam Browser for Windows.
|
Version | Downloads | Last updated |
---|---|---|
8.2.0 | 384 | 8/3/2024 |
8.1.0 | 8,193 | 2/10/2024 |
8.0.0 | 1,856 | 12/11/2023 |
8.0.0-rc.1 | 87 | 12/2/2023 |
8.0.0-preview.1 | 87 | 11/10/2023 |
7.2.0 | 4,202 | 5/7/2023 |
7.2.0-preview.2 | 114 | 4/24/2023 |
7.2.0-preview.1 | 123 | 3/29/2023 |
7.1.0 | 2,286 | 2/19/2023 |
7.0.0 | 5,002 | 11/11/2022 |
7.0.0-rc.2 | 146 | 10/14/2022 |
7.0.0-rc.1 | 154 | 9/23/2022 |
7.0.0-preview.3 | 159 | 8/14/2022 |
7.0.0-preview.2 | 159 | 7/24/2022 |
7.0.0-preview.1 | 168 | 6/14/2022 |
See the detailed release notes here: https://github.com/koszeggy/KGySoft.Drawing/blob/master/KGySoft.Drawing.Core/changelog.txt