Hi:
In this code:
@using Syncfusion.Blazor.Inputs
@using Syncfusion.Blazor.Buttons
<h4>Sign Here</h4>
<SfSignature @ref="signature" BackgroundImage="https://media.istockphoto.com/photos/pixelated-leaf-picture-id1335295829?s=612x612"></SfSignature>
<SfButton @onclick="GetBlob">GetBlob</SfButton>
@code{
private SfSignature signature;
private async void GetBlob()
{
var blob = await signature.SaveAsBlobAsync();
var type = blob.GetType();
}
How can I convert "type" or "blob" variable into a string64?
Thanks.
Òscar