I'm using Blazor server and I'm loading succesufully a Pdf from disk into a SfPdfViewer
After that I added successfully some annotations to add an image and a signature
Then I used these lines to export the pdf fields and fill them with my data and it works perfectly
dictionary = await Viewer.ExportFormFieldsAsObjectAsync();
Dictionary<string, string> dati = SchedeService.PdfContratto(schedascelta, filiale, swstampa.Checked ? "eng" : "ita", dictionary, pagine);
await Viewer.ImportFormFieldsAsync(dati);
How can I export the complete pdf from the Viewer as a byte [] ?
Thanks