5

I'm looking for code or a good control to preview PDFs and PPTs with Silverlight or Flash. It would be great if it has nice page-curl functionality.

We want our customers to be able to have a look at their reports in a spiffy way.

Todd Main
  • 28,951
  • 11
  • 82
  • 146
Yvo
  • 18,681
  • 11
  • 71
  • 90

2 Answers2

6

Some ideas for Silverlight display:

Jon Galloway
  • 52,327
  • 25
  • 125
  • 193
1

Flash can only display Jpg images, therefore will need to convert each page of the PDF or PPT to a jpg file, then import these into a flash page turner component.

PDF files can be rasterized or converted to jpg using GhostScript.

PPT files could be printed to PostScript(PS) through Office automation or other library, The PS can then also be converted to jpg using GhostScript.

I have done this in Flash and would assume the same applies for Silverlight.

This is what is required at a low level.

Mark Redman
  • 24,079
  • 20
  • 92
  • 147
  • the best approach is to convert the PDF into an SWF on the server, because it's more performant, probably smaller and preserves resolution independent data ... most simple thing would probably be pdf2swf from swftools (http://www.swftools.org/) ... – back2dos Aug 04 '09 at 12:07
  • Does the pdf to swf convert the text to selectable text within the swf? – Mark Redman Aug 04 '09 at 13:04