CodeBrix.Imaging.ApacheLicenseForever 1.0.48

There is a newer version of this package available.
See the version list below for details.
dotnet add package CodeBrix.Imaging.ApacheLicenseForever --version 1.0.48
                    
NuGet\Install-Package CodeBrix.Imaging.ApacheLicenseForever -Version 1.0.48
                    
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="CodeBrix.Imaging.ApacheLicenseForever" Version="1.0.48" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeBrix.Imaging.ApacheLicenseForever" Version="1.0.48" />
                    
Directory.Packages.props
<PackageReference Include="CodeBrix.Imaging.ApacheLicenseForever" />
                    
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 CodeBrix.Imaging.ApacheLicenseForever --version 1.0.48
                    
#r "nuget: CodeBrix.Imaging.ApacheLicenseForever, 1.0.48"
                    
#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 CodeBrix.Imaging.ApacheLicenseForever@1.0.48
                    
#: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=CodeBrix.Imaging.ApacheLicenseForever&version=1.0.48
                    
Install as a Cake Addin
#tool nuget:?package=CodeBrix.Imaging.ApacheLicenseForever&version=1.0.48
                    
Install as a Cake Tool

CodeBrix.Imaging

A fully managed, cross-platform 2D image processing and font handling library for .NET.

CodeBrix.Imaging has no dependencies other than .NET, and is provided as a .NET 10 library and associated CodeBrix.Imaging.ApacheLicenseForever NuGet package.

CodeBrix.Imaging supports applications and assemblies that target Microsoft .NET version 10.0 and later. Microsoft .NET version 10.0 is a Long-Term Supported (LTS) version of .NET, and was released on Nov 11, 2025; and will be actively supported by Microsoft until Nov 14, 2028. Please update your C#/.NET code and projects to the latest LTS version of Microsoft .NET.

CodeBrix.Imaging is a fork of the code of the open source SixLabors.ImageSharp and SixLabors.Fonts libraries - see below for licensing details.

CodeBrix.Imaging supports:

  • Image formats: BMP, GIF, JPEG, PBM, PNG, TGA, TIFF, WebP
  • Image processing: resizing, cropping, rotating, flipping, and more
  • Filters: brightness, contrast, saturation, hue, grayscale, sepia, and more
  • Effects: Gaussian blur, Bokeh blur, edge detection, and more
  • Drawing and text rendering
  • Font handling (TrueType fonts)
  • Color spaces and pixel formats
  • Image metadata (EXIF, IPTC, XMP)
  • Quantization and dithering
  • Many more...

Sample Code

Load and Resize an Image

using CodeBrix.Imaging;
using CodeBrix.Imaging.Processing;

using var image = Image.Load("photo.jpg");

image.Mutate(x => x.Resize(800, 600));

image.Save("photo-resized.jpg");

Convert Image Format

using CodeBrix.Imaging;

using var image = Image.Load("photo.bmp");

image.Save("photo.png");

Apply Filters and Effects

using CodeBrix.Imaging;
using CodeBrix.Imaging.Processing;

using var image = Image.Load("photo.jpg");

image.Mutate(x => x
    .Grayscale()
    .GaussianBlur(3)
    .Resize(1024, 768));

image.Save("photo-processed.jpg");

Crop an Image

using CodeBrix.Imaging;
using CodeBrix.Imaging.Processing;

using var image = Image.Load("photo.jpg");

image.Mutate(x => x.Crop(new Rectangle(100, 100, 500, 400)));

image.Save("photo-cropped.jpg");

Note that additional sample code and usage examples are available in the CodeBrix.Imaging.Tests project.

License

The project is licensed under the Apache License 2.0. see: https://en.wikipedia.org/wiki/Apache_License

All code originating from SixLabors.ImageSharp was included as allowed by the Apache License 2.0 permissible open source software license - as of Jun 19, 2022. This project (CodeBrix.Imaging) complies with all provisions of the source code license of SixLabors.ImageSharp v2.1.3 (Apache License 2.0).

All code originating from SixLabors.Fonts was included as allowed by the Apache License 2.0 permissible open source software license - as of Jul 22, 2022. This project (CodeBrix.Imaging) complies with all provisions of the source code license of SixLabors.Fonts v1.0.0 (Apache License 2.0).

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on CodeBrix.Imaging.ApacheLicenseForever:

Package Downloads
FreePPlus.LgplLicenseForever

Create advanced Excel spreadsheets using .NET, without the need of interop. FreePPlus is a .NET library that reads and writes Excel files using the Office Open XML format (xlsx).

CodeBrix.PdfDocuments.MitLicenseForever

CodeBrix.PdfDocuments is an Open Source .NET 10 (and higher) library that easily creates and processes PDF documents. The same drawing routines can be used to create PDF documents, draw on the screen, or send output to any printer.

CodeBrix.PdfRasterizer.MitLicenseForever

CodeBrix.PdfRasterizer is an Open Source .NET 10 (and higher) library that renders PDF pages to images (PNG, JPEG, BMP, GIF, TIFF) using the PDFium native rendering engine, with support for thumbnails, page information, and cross-platform operation (Windows, macOS, Linux, Android).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.73 95 3/14/2026
1.0.72 83 3/14/2026
1.0.49 102 2/27/2026
1.0.48 139 2/26/2026