Blazor.SignaturePad
7.0.2
See the version list below for details.
dotnet add package Blazor.SignaturePad --version 7.0.2
NuGet\Install-Package Blazor.SignaturePad -Version 7.0.2
<PackageReference Include="Blazor.SignaturePad" Version="7.0.2" />
paket add Blazor.SignaturePad --version 7.0.2
#r "nuget: Blazor.SignaturePad, 7.0.2"
// Install Blazor.SignaturePad as a Cake Addin #addin nuget:?package=Blazor.SignaturePad&version=7.0.2 // Install Blazor.SignaturePad as a Cake Tool #tool nuget:?package=Blazor.SignaturePad&version=7.0.2
SignaturePad
A simple to use blazor component to draw a signature. It supports both mouse and touch inputs and works on Blazor Server and Blazor WebAssembly.
See a live demo right here on github.
Installation
You can install from Nuget using the following command:
Install-Package Blazor.SignaturePad
Or via the Visual Studio package manger.
Basic usage
Start by add the following using statement to your root _Imports.razor
.
@using SignaturePad
Next you should define add a property to your class. For example:
public class MyInput
{
public byte[] Signature { get; set; } = Array.Empty<byte>();
}
You can then use it wherever you want. `
<SignaturePad @bind-Value="Input.Signature" />
The control provides you the image data as base64 byte[]
To get the image, you'll need to convert to byte[]
into a string. For example:
public class MyInput
{
public byte[] Signature { get; set; }
public string SignatureAsBase64 => System.Text.Encoding.UTF8.GetString(Signature);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- Microsoft.AspNetCore.Components.Web (>= 7.0.3)
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 | |
---|---|---|---|
9.0.0 | 119 | 11/14/2024 | |
8.1.5 | 8,798 | 7/23/2024 | |
8.1.4 | 465 | 7/15/2024 | |
8.1.3 | 403 | 7/3/2024 | |
8.1.2 | 131 | 7/2/2024 | |
8.1.0 | 358 | 7/2/2024 | |
8.0.6 | 1,184 | 6/11/2024 | |
8.0.0 | 14,911 | 11/20/2023 | |
7.5.0 | 3,269 | 11/6/2023 | |
7.4.2 | 2,945 | 9/4/2023 | |
7.4.1 | 424 | 8/30/2023 | |
7.4.0 | 2,578 | 6/30/2023 | |
7.3.0 | 1,089 | 6/14/2023 | |
7.2.0 | 248 | 6/12/2023 | |
7.1.2 | 240 | 6/7/2023 | |
7.1.1 | 3,155 | 4/12/2023 | |
7.1.0 | 338 | 4/11/2023 | |
7.0.4 | 266 | 4/4/2023 | |
7.0.3 | 962 | 3/13/2023 | |
7.0.2 | 363 | 2/23/2023 | |
7.0.1 | 498 | 11/29/2022 |