📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
James Jackson-South 32f8cf0f14 Cleanup and refactor 6 years ago
.github Inline token 6 years ago
shared-infrastructure@ea561c249b Update submodule and remove build copy. 6 years ago
src Cleanup and refactor 6 years ago
tests Cleanup and refactor 6 years ago
.editorconfig Fix module, import configs, automate T4 builds 6 years ago
.gitattributes Add more rule exemptions and prevent blanket using recommendations 6 years ago
.gitignore Update codecov calc and use inbuild ref source/targets 6 years ago
.gitmodules Fix module, import configs, automate T4 builds 6 years ago
CODE_OF_CONDUCT.md Add code of conduct 6 years ago
Directory.Build.props Update Directory.Build.props 6 years ago
Directory.Build.targets Fix #1166 6 years ago
GitVersion.yml cherry pick CI improvements from @JimBobSquarePants 6 years ago
ImageSharp.sln Fix module, import configs, automate T4 builds 6 years ago
LICENSE Create LICENSE 8 years ago
README.md Restore code coverage button 6 years ago
ci-build.ps1 Update codecov calc and use inbuild ref source/targets 6 years ago
ci-pack.ps1 Update codecov calc and use inbuild ref source/targets 6 years ago
ci-test.ps1 update ci script 6 years ago
codecov.yml Update codecov.yml 6 years ago

README.md

SixLabors.ImageSharp
SixLabors.ImageSharp

Build Status Code coverage GitHub license Gitter Twitter OpenCollective OpenCollective

Designed to democratize image processing, ImageSharp brings you an incredibly powerful yet beautifully simple API.

Compared to System.Drawing we have been able to develop something much more flexible, easier to code against, and much, much less prone to memory leaks. Gone are system-wide process-locks; ImageSharp images are thread-safe and fully supported in web environments.

Built against .NET Standard 1.3, ImageSharp can be used in device, cloud, and embedded/IoT scenarios.

Documentation

For all SixLabors projects, including ImageSharp: https://sixlabors.github.io/docs/

Installation

Install stable releases via Nuget; development releases are available via MyGet.

Package Name Release (NuGet) Nightly (MyGet)
SixLabors.ImageSharp NuGet MyGet

Packages

The ImageSharp library is made up of multiple packages:

  • SixLabors.ImageSharp
    • Contains the generic Image<TPixel> class, PixelFormats, Primitives, Configuration, and other core functionality
    • The IImageFormat interface, Jpeg, Png, Bmp, and Gif formats
    • Transform methods like Resize, Crop, Skew, Rotate - anything that alters the dimensions of the image
    • Non-transform methods like Gaussian Blur, Pixelate, Edge Detection - anything that maintains the original image dimensions

Questions?

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

API

Our API is designed to be simple to consume. Here's an example of the code required to resize an image using the default Bicubic resampler then turn the colors into their grayscale equivalent using the BT709 standard matrix.

On platforms supporting netstandard 1.3+

using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.PixelFormats;

// Image.Load(string path) is a shortcut for our default type. 
// Other pixel formats use Image.Load<TPixel>(string path))
using (Image image = Image.Load("foo.jpg"))
{
    image.Mutate(x => x
         .Resize(image.Width / 2, image.Height / 2)
         .Grayscale());
    image.Save("bar.jpg"); // Automatic encoder selected based on extension.
}

Setting individual pixel values can be performed as follows:

using SixLabors.ImageSharp;
using SixLabors.ImageSharp.PixelFormats;

// Individual pixels
using (var image = new Image<Rgba32>(400, 400))
{
    image[200, 200] = Rgba32.White;
}

Rgba32 is our default PixelFormat, equivalent to System.Drawing Color. For advanced pixel format usage there are multiple PixelFormat implementations available allowing developers to implement their own color models in the same manner as Microsoft XNA Game Studio and MonoGame.

For more examples check out:

Manual build

If you prefer, you can compile ImageSharp yourself (please do and help!)

Alternatively, you can work from command line and/or with a lightweight editor on both Linux/Unix and Windows:

To clone ImageSharp locally, click the "Clone in [YOUR_OS]" button above or run the following git commands:

git clone https://github.com/SixLabors/ImageSharp

If working with Windows please ensure that you have enabled log file paths in git (run as Administrator).

git config --system core.longpaths true

Submodules

This repository contains git submodules. To add the submodules to the project, navigate to the repository root and type:

git submodule update --init --recursive

How can you help?

Please... Spread the word, contribute algorithms, submit performance improvements, unit tests, no input is too little. Make sure to read our Contribution Guide before opening a PR.

The ImageSharp Team

Grand High Eternal Dictator

Core Team

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]