Reputation: 3009
I am starting a Web project in C# and javascript and I need to create and view PDF document. As an example, create and view a resume.
What library can I use to achieve the above.
Thanks for your help
Upvotes: 1
Views: 544
Reputation: 1
To render PDF using javascript you can use
Adobe Embed APIs: https://www.adobe.com/devnet-docs/dcsdk_io/viewSDK/index.html
Upvotes: 0
Reputation: 235
You can use iTextSharp to generate PDF's with C#.
https://www.nuget.org/packages/iTextSharp/
With this lib you can create the PDF. then return it to the client and use it as you wish download or present (you can present it with iframe to the route that return the pdf)
Upvotes: 2