Nuget Paint Package or Digital Signature

Asked

Viewed 92 times

1

Is there any nuget package that allows you to make digital signature drawing by screen, or even a nuget that is something like a Paint where you can draw on the screen and save as an image?

1 answer

1


Yes. There are some in the market, but I recommend one I’ve used and I know it works well: The Signaturepad.

This is a open source component for collecting signatures with Xamarin.Forms from Microsoft itself.

The statement in XAML is very simple:

<controls:SignaturePad x:Name="signatureView"
                       StrokeWidth="3"
                       StrokeColor="White"
                       Background="Black" />

And the component already delivers the signature image as a Stream for you to work as you like, or as Point[], if you choose to store the signature virtually and redesign at another time.

I hope I’ve helped.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.