PrivateIdentity.SixLabors.ImageSharp 0.0.5

Additional Details

This package is no longer maintained.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package PrivateIdentity.SixLabors.ImageSharp --version 0.0.5
NuGet\Install-Package PrivateIdentity.SixLabors.ImageSharp -Version 0.0.5
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="PrivateIdentity.SixLabors.ImageSharp" Version="0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PrivateIdentity.SixLabors.ImageSharp --version 0.0.5
#r "nuget: PrivateIdentity.SixLabors.ImageSharp, 0.0.5"
#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.
// Install PrivateIdentity.SixLabors.ImageSharp as a Cake Addin
#addin nuget:?package=PrivateIdentity.SixLabors.ImageSharp&version=0.0.5

// Install PrivateIdentity.SixLabors.ImageSharp as a Cake Tool
#tool nuget:?package=PrivateIdentity.SixLabors.ImageSharp&version=0.0.5

Private Identity .NET SDK

PrivateIdentity.SixLabors.ImageSharp NuGet Package

This package contains helper extension methods for simpler comunicating between SixLabors.ImageSharp NuGet package interaces and the PrivateIdentity.Sdk NuGet package interfaces.

How To Use Package

How To Install

If you use a .NED SDK from console just add a package reference into your project:

dotnet add package PrivateIdentity.SixLabors.ImageSharp

Of if you use any IDE like Visual Studio or Rider, just use built-in NuGet package GUI for adding the package.

Convert Image Into IImageData

Properly constructed SixLabors.ImageSharp.Image object can be easily converted into the IImageData interface wrapper using the ToImageData or ToImageDataAsync methods.

For example if you want to load file using file path and validate it you can do it this way:

using var module = Factory.GetFaceModule(new ModuleSettings(API_KEY));
using var image = await Image.LoadAsync(FULL_FILE_NAME));
using var imageData = await image.ToImageDataAsync();

var result = module.Validate(imageData);
Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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. 
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

- The dependant `SixLabors.ImageSharp` NuGet package upgraded up to the 3.0.1 version.