Hi,
We want to allow users to download pdf with their annotations in it. How can we have merged pdf ?
In your documentation, i can't find any explanation about how to do it. I can found how to export and import but we want a new pdf with annotations visible by any other pdf viewer.
Thanks
Thanks for your answer, but it's not what i want to do.
I want to save pdf with annotations drawed on it. When users draw something or put stamp on the pdf, i want to allow them to download the file with annotation on it.
Can you tell me how to do that ?
Best regards,
|
<SfPdfViewerServer @ref="Viewer" DocumentPath="wwwroot/PDF Succinctly.pdf" Height="640px" Width="100%">
<PdfViewerEvents AnnotationAdded="annotationAdded"></PdfViewerEvents>
</SfPdfViewerServer>
@code{
public SfPdfViewerServer Viewer { get; set; }
public void annotationAdded()
{
Viewer.DownloadAsync();
}
}
Note: It will download the PDF document directly into the downloads folder. |