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
                    
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="AuroraLib.Pixel.BitmapExtension" Version="1.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AuroraLib.Pixel.BitmapExtension" Version="1.3.0" />
                    
Directory.Packages.props
<PackageReference Include="AuroraLib.Pixel.BitmapExtension" />
                    
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 AuroraLib.Pixel.BitmapExtension --version 1.3.0
                    
#r "nuget: AuroraLib.Pixel.BitmapExtension, 1.3.0"
                    
#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 AuroraLib.Pixel.BitmapExtension@1.3.0
                    
#: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=AuroraLib.Pixel.BitmapExtension&version=1.3.0
                    
Install as a Cake Addin
#tool nuget:?package=AuroraLib.Pixel.BitmapExtension&version=1.3.0
                    
Install as a Cake Tool

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

Core library. NuGet Package

AuroraLib.Pixel.BitmapExtension

Provides integration for System.Drawing.Bitmap. NuGet Package BitmapExtension

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. NuGet Package ImageSharpExtension

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. NuGet Package SkiaSharpExtension

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.3.0 132 10/15/2025
1.2.0 132 10/9/2025
1.1.1 183 6/26/2025
1.1.0 231 6/8/2025
1.0.0 184 5/22/2025