AuroraLib.Pixel.BitmapExtension
1.3.0
dotnet add package AuroraLib.Pixel.BitmapExtension --version 1.3.0
NuGet\Install-Package AuroraLib.Pixel.BitmapExtension -Version 1.3.0
<PackageReference Include="AuroraLib.Pixel.BitmapExtension" Version="1.3.0" />
<PackageVersion Include="AuroraLib.Pixel.BitmapExtension" Version="1.3.0" />
<PackageReference Include="AuroraLib.Pixel.BitmapExtension" />
paket add AuroraLib.Pixel.BitmapExtension --version 1.3.0
#r "nuget: AuroraLib.Pixel.BitmapExtension, 1.3.0"
#:package AuroraLib.Pixel.BitmapExtension@1.3.0
#addin nuget:?package=AuroraLib.Pixel.BitmapExtension&version=1.3.0
#tool nuget:?package=AuroraLib.Pixel.BitmapExtension&version=1.3.0
AuroraLib.Pixel
AuroraLib.Pixel is a high-performance C# library designed for direct manipulation of raw pixel data. It is not intended for image editing, but provides robust tools for efficiently loading, saving, converting, and managing a wide variety of pixel formats. The library supports an broad range of raw, indexed (palettized), block-compressed, and other specialized pixel formats.
AuroraLib.Pixel
AuroraLib.Pixel.BitmapExtension
Provides integration for System.Drawing.Bitmap.
Example
Converts a Bitmap to an Aurora Image: Directly accesses the memory without copying.
using Bitmap bitmap = new Bitmap("Test.png");
using IImage imageAurora = bitmap.AsAuroraImage();
Converts an Aurora Image to a Bitmap.
using IImage<RGBA32> imageAurora = new MemoryImage<RGBA32>(10, 10);
using Bitmap bitmap = imageAurora.CloneAsBitmap(PixelFormat.Format32bppArgb);
AuroraLib.Pixel.ImageSharpExtension
Provides integration for ImageSharp.
Example
Try to converts a ImageSharp.Image to an Aurora Image: Directly accesses the memory without copying.
using Image imageSixLabors = Image.Load("Test.png");
if (imageSixLabors.TryAsAuroraImage(out IImage imageAurora))
{
}
Converts an Aurora Image to a ImageSharp.Image.
using IImage<RGBA32> imageAurora = new MemoryImage<RGBA32>(10, 10);
using Image<Rgba32> imageSixLabors = imageAurora.CloneAsImageSharp<Rgba32>();
AuroraLib.Pixel.SkiaSharpExtension
Provides integration for SkiaSharp.
Example
Converts a SKBitmap to an Aurora Image: Directly accesses the memory without copying.
using SKBitmap bitmap = new SKBitmap(10, 10, SKColorType.Argb4444, SKAlphaType.Opaque);
using IImage imageAurora = bitmap.AsAuroraImage();
Converts an Aurora Image to a SKBitmap.
using IImage<RGBA32> imageAurora = new MemoryImage<RGBA32>(10, 10);
using SKBitmap bitmap = imageAurora.CloneAsSKBitmap(SKColorType.Bgra8888);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. 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. net9.0 was computed. 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 was computed. 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. |
| .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 is compatible. 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. |
-
.NETFramework 4.7.2
- AuroraLib.Pixel (>= 1.3.0)
-
.NETStandard 2.0
- AuroraLib.Pixel (>= 1.3.0)
- System.Drawing.Common (>= 8.0.16)
-
net6.0
- AuroraLib.Pixel (>= 1.3.0)
- System.Drawing.Common (>= 8.0.16)
-
net8.0
- AuroraLib.Pixel (>= 1.3.0)
- System.Drawing.Common (>= 10.0.0-rc.1.25451.107)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.