054fff5687 | ||
---|---|---|
.github | ||
src | ||
.gitignore | ||
code_of_conduct.md | ||
license.txt | ||
readme.md |
readme.md
Verify.ImageSharp
Extends Verify to allow verification of documents via ImageSharp.
See Milestones for release notes.
NuGet package
https://nuget.org/packages/Verify.ImageSharp/
Usage
[ModuleInitializer]
public static void Init() =>
VerifyImageSharp.Initialize();
Verify a file
[Test]
public Task VerifyImageFile() =>
VerifyFile("sample.jpg");
[Test]
public Task VerifyImageFileWithCustomEncoder() =>
VerifyFile("sample.jpg")
.EncodeAsPng();
Two files are produced
Info file:
Samples.VerifyImageFile.verified.txt
{
Width: 1599,
Height: 1066,
HorizontalResolution: 1.0,
VerticalResolution: 1.0
}
Image file:
Samples.VerifyImageFile.verified.jpg
Verify an SixLabors.ImageSharp.Image
An instance if an SixLabors.ImageSharp.Image
can be verified using the following:
[Test]
public Task VerifyImage()
{
var image = new Image<Rgba32>(11, 11)
{
[5, 5] = Rgba32.ParseHex("#0000FF")
};
return Verify(image);
}
File Samples
Icon
Swirl designed by BÖCK, RU from The Noun Project.