How to edit a pdf in the browser and save it to the server

前端 未结 7 1694
-上瘾入骨i
-上瘾入骨i 2020-12-13 02:55

Here are the requirements, the users needs to be able to view uploaded PDFs in the browser. They need to be able to add notes to the PDF and save the updated PDF to the ser

7条回答
  •  感情败类
    2020-12-13 03:32

    You can use either PDFSharp or itextsharp to create annotations. Haven't tried PDFSharp annotation but iTextSharp does work. You'll have to handle the editing on the server side. probably copy the file to a temp folder edit it and save it back.

    You'll find itextsharp at http://itextsharp.sourceforge.net, annotation example: bottom at the page http://itextsharp.sourceforge.net/tutorial/ch03.html

    pdfsharp: http://www.pdfsharp.net

提交回复
热议问题