Meziantou.Framework.SnapshotTesting.ImageSharp 2.0.16

Prefix Reserved
dotnet add package Meziantou.Framework.SnapshotTesting.ImageSharp --version 2.0.16
                    
NuGet\Install-Package Meziantou.Framework.SnapshotTesting.ImageSharp -Version 2.0.16
                    
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="Meziantou.Framework.SnapshotTesting.ImageSharp" Version="2.0.16" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meziantou.Framework.SnapshotTesting.ImageSharp" Version="2.0.16" />
                    
Directory.Packages.props
<PackageReference Include="Meziantou.Framework.SnapshotTesting.ImageSharp" />
                    
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 Meziantou.Framework.SnapshotTesting.ImageSharp --version 2.0.16
                    
#r "nuget: Meziantou.Framework.SnapshotTesting.ImageSharp, 2.0.16"
                    
#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 Meziantou.Framework.SnapshotTesting.ImageSharp@2.0.16
                    
#: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=Meziantou.Framework.SnapshotTesting.ImageSharp&version=2.0.16
                    
Install as a Cake Addin
#tool nuget:?package=Meziantou.Framework.SnapshotTesting.ImageSharp&version=2.0.16
                    
Install as a Cake Tool

Meziantou.Framework.SnapshotTesting.ImageSharp

Meziantou.Framework.SnapshotTesting.ImageSharp extends Meziantou.Framework.SnapshotTesting with support for SixLabors.ImageSharp images, enabling snapshot validation of Image objects stored as PNG, JPEG, BMP, TIFF, or WebP files.

Licensing

This package is MIT-licensed, but it takes a hard dependency on SixLabors.ImageSharp, which since v3 is published under the Six Labors Split License: AGPL-3.0 unless you hold a commercial licence. Installing this package therefore brings that obligation with it, and your build will emit a "No Six Labors license found" warning until you set SixLaborsLicenseKey, set SixLaborsLicenseFile, or add a sixlabors.lic file.

If that does not suit your project, Meziantou.Framework.SnapshotTesting.SkiaSharp offers the same image snapshot support on top of SkiaSharp, which is MIT-licensed.

Setup

Call AddImageSharp() on your SnapshotSettings to register the ImageSharp serializer and comparer:

using System.Runtime.CompilerServices;
using Meziantou.Framework.SnapshotTesting;
using Meziantou.Framework.SnapshotTesting.ImageSharp;

internal static class SnapshotConfiguration
{
    [ModuleInitializer]
    internal static void Initialize()
    {
        SnapshotSettings.Default.AddImageSharp();
    }
}

Then validate images from your tests:

public sealed class SampleTests
{
    [Fact]
    public void ValidateImage()
    {
        using var image = Image.Load("sample.png");
        Snapshot.Validate(image, SnapshotType.Png);
    }
}

Register once for the whole test assembly, not inside a test method. SnapshotSettings.Default is shared by every test in the process and its collections are not safe for concurrent modification, so calling AddImageSharp() from a test races against any other test that is serializing a snapshot at the same time. Repeated calls also append a serializer and a converter every time.

Image comparison

By default, images are compared pixel-by-pixel (exact comparison). To allow minor rendering differences, configure a Structural Similarity Index (SSIM) threshold:

// In the module initializer shown above
SnapshotSettings.Default.AddImageSharp(new ImageComparisonSettings
{
    SimilarityThreshold = 0.99f, // 0.0 = completely different, 1.0 = identical
});

When SimilarityThreshold is set, the images must have the same dimensions and their score must be greater than or equal to the threshold. The score is the mean SSIM over every 7×7 window of the images (uniform weights, sample covariance, K1 = 0.01, K2 = 0.03), the value scikit-image's structural_similarity(expected, actual, data_range=255, channel_axis=-1) computes with its default parameters. The R, G, and B channels are premultiplied by the alpha channel and averaged, and the score is the lower of that value and the SSIM of the alpha channel, so opacity differences are detected. Because the score is a mean, a localized difference lowers it in proportion to the area it covers: a difference confined to 1% of the image lowers it by about 0.01 at most. Fully transparent pixels are equal whatever color they hide, with both the exact and the SSIM comparison, and a snapshot that cannot be decoded does not match.

Images with samples of more than 8 bits, such as 16-bit PNGs, follow the same rule as the built-in ImageComparer and the SkiaSharp package: the exact comparison sees every bit of every sample (an 8-bit sample v equals the 16-bit sample v × 257), and the SSIM reduces each sample to 8 bits by keeping its high byte.

When images do not match, the assertion message says why under the changed file: an image cannot be decoded, the images have different sizes or different pixels, or the SSIM score is below the threshold.

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.  net11.0 is compatible. 
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
2.0.16 32 9/20/2026
2.0.15 60 9/15/2026
2.0.14 72 9/15/2026
2.0.13 71 9/15/2026
2.0.12 78 9/13/2026
2.0.11 88 9/11/2026
2.0.10 104 9/9/2026
2.0.9 93 9/6/2026
2.0.8 91 9/3/2026
2.0.7 99 9/3/2026
2.0.6 99 8/30/2026
2.0.5 100 8/29/2026
2.0.4 96 8/23/2026
2.0.3 109 8/16/2026
2.0.2 105 8/9/2026
2.0.1 127 7/8/2026
2.0.0 117 7/5/2026
1.0.16 118 7/5/2026
1.0.15 126 6/28/2026
1.0.14 124 6/22/2026
Loading failed