Reputation: 37
I am going to create pdf editor tools in uwp using c#. I am not understanding which library i should use ? i only write code to select pdf . but I am not able to edit pdf? and more over I also want to create a pdf editor tool which contain text Highlighter, editor, swigal,strikeout.
Upvotes: 0
Views: 343
Reputation: 821
Well, the standard library for dealing with PDFs in the UWP platform is:
Windows.Data.PDF
Of course, this namespace doesn't give you a practical PDF viewer… you will have to arrange it by yourself.
Microsoft has created a UWP sample that demonstrates how to create a PDF viewer and how to deal with theese docs easily.
More infos here:
Microsoft Docs - Windows.Data.PDF
Upvotes: 1