We have a couple 3rd party systems that give us PDFs. We would like to convert those PDFs for display on the web without using an Adobe product. Ideally we would like to use Silverlight to render the PDFs but are having trouble converting from a PDF to Xaml or using docx format as a middle man. There are lots of libraries that give PDFs but that is not what we need.

If there is a library out there that does this, a .net lib would be preferable but we can run the conversion using the command line as well if that is an option.

link|improve this question

76% accept rate
Anyone know of any free options native to .net instead of running 3rd party apps (i.e. ghostscript) – Rob Feb 10 '10 at 14:03
Yes, the Mono project implements many of the required classes. I'm not sure where it currently stands with respect to Silverlight, but the plan is to implement all the relevant classes. – Charles Stewart May 25 '10 at 12:41
feedback

4 Answers

Aspose sells .Net converter libraries.

link|improve this answer
They have nothing that can convert a PDF to doc, docx, RTF, or anything similar – JTtheGeek Dec 10 '10 at 22:12
feedback

Convert PDF to SVG (ghostscript will do it) and import that as a series of images: I'm not a .net programmer, but I understand that can be done with the system.io.packaging class, which, for what it's worth, is implemented outside of .net by the Mono project.

link|improve this answer
feedback

There are a number of converters from PDF to XPS which is a subset of XAML.

[update] some reference links

link|improve this answer
feedback

You know PDFs are somewhat of a standard and you don't need an Adobe product to read them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.