user1670743
user1670743

Reputation: 21

Reading pdf in win 8

I need to read and edit existing pdf in win 8 app. Editing pdf include adding text and images at any position on pdf. Shall i go for xaml or javascript based coding. which link should i follow that will give info for editing pdf.

Upvotes: 2

Views: 169

Answers (3)

imslavko
imslavko

Reputation: 6676

If you want ready framework, you can look at Foxit Software solutions. They already have framework for Win8, but it can be expensive.

Upvotes: 0

Marcus Ilgner
Marcus Ilgner

Reputation: 7231

PDF is a beast of a file format. If you don't have lots of software development experience (which your question suggests you do not), writing a PDF editor from the ground up (especially if you have no team) can be a daunting task, even only considering the non-UI aspects of it.

Even should you implement a library that's 100% conforming to standards, you'll have to deal with all the faulty PDFs out there. Which very few readers, including the Win8 PDF reader, accomplish.

In case you're looking for a library, you should have a look at http://www.dynaforms.com/ - it can cope with most PDFs and has some editing functions and a renderer (in the professional version) as well and there's a Windows 8 compatible version of it.

Upvotes: 0

Related Questions