Librame.Extensions.Drawing 5.21.2019.1182

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 Librame.Extensions.Drawing --version 5.21.2019.1182
NuGet\Install-Package Librame.Extensions.Drawing -Version 5.21.2019.1182
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="Librame.Extensions.Drawing" Version="5.21.2019.1182" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Librame.Extensions.Drawing --version 5.21.2019.1182
#r "nuget: Librame.Extensions.Drawing, 5.21.2019.1182"
#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 Librame.Extensions.Drawing as a Cake Addin
#addin nuget:?package=Librame.Extensions.Drawing&version=5.21.2019.1182

// Install Librame.Extensions.Drawing as a Cake Tool
#tool nuget:?package=Librame.Extensions.Drawing&version=5.21.2019.1182

Librame.Extensions.Drawing (based SkiaSharp)

Install Extension

PM> Install-Package Librame.Extensions.Drawing

Register Extension

// Use DependencyInjection
var services = new ServiceCollection();

// Register Librame
services.AddLibrame()
    .AddDrawing();

// Build ServiceProvider
var serviceProvider = services.BuildServiceProvider();

Test Extension

// Captcha
public class InternalCaptchaServiceTests
{
    private ICaptchaService _drawing = null;

    public InternalCaptchaServiceTests()
    {
        _drawing = TestServiceProvider.Current.GetRequiredService<ICaptchaService>();
    }

    [Fact]
    public async void DrawCaptchaBytesTest()
    {
        var buffer = await _drawing.DrawBytes("1234");
        Assert.NotNull(buffer);
    }

    [Fact]
    public async void DrawCaptchaFileTest()
    {
        var saveFile = "captcha.png".AsDefaultFileLocator(TestServiceProvider.ResourcesPath);

        var succeed = await _drawing.DrawFile("1234", saveFile.ToString());
        Assert.True(succeed);
    }
}

// Scale
public class InternalScaleServiceTests
{
    private IScaleService _drawing = null;

    public InternalScaleServiceTests()
    {
        _drawing = TestServiceProvider.Current.GetRequiredService<IScaleService>();
    }

    [Fact]
    public async void DrawScaleTest()
    {
        // 5K 2.21MB
        var imageFile = "eso1004a.jpg".AsDefaultFileLocator(TestServiceProvider.ResourcesPath);
        
        var succeed = await _drawing.DrawFile(imageFile.ToString());
        Assert.True(succeed);
    }

    [Fact]
    public async void DrawScalesByDirectoryTest()
    {
        // 5K 2.21MB
        var directory = TestServiceProvider.ResourcesPath.CombinePath(@"pictures");
        
        // Clear
        var count = _drawing.DeleteScalesByDirectory(directory);

        count = await _drawing.DrawFilesByDirectory(directory);
        Assert.True(count > 0);
    }
}

// Watermark
public class InternalWatermarkServiceTests
{
    private IWatermarkService _drawing = null;

    public InternalWatermarkServiceTests()
    {
        _drawing = TestServiceProvider.Current.GetRequiredService<IWatermarkService>();
    }

    [Fact]
    public async void DrawWatermarkTest()
    {
        // 5K 2.21MB
        var imageFile = "eso1004a.jpg".AsDefaultFileLocator(TestServiceProvider.ResourcesPath);
        var saveFile = imageFile.NewFileName("eso1004a-watermark.png");
        
        var succeed = await _drawing.DrawFile(imageFile.ToString(), saveFile.ToString());
        Assert.True(succeed);
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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

Librame.Extensions.Drawing