Possible Duplicate:
Opening a PDF in WPF Application
Is there a way to load a PDF into a WPF FixedDocument or FlowDocument without 3rd party components?
Possible Duplicate:
Opening a PDF in WPF Application
Is there a way to load a PDF into a WPF FixedDocument or FlowDocument without 3rd party components?
You can do this by using a PDF converter to generate image files for each page in the PDF file and then combine these to a FixedDocument
.
For the PDF conversion you can use Ghostscript (use the in-process gsdll32.dll
). There is a GPL licensed version and a commercial version.
The drawback is that your documents are rendered during the conversion and you will not be able search the resulting FixedDocument
or improve the quality by rendering it at a higher DPI.