Reputation: 6468
is there any free flash pdf viewer so that i can embeded it in my asp pages,i tried searching google but all in vain.[embedded PDF viewer will also work ]
thanks in advance
Upvotes: 13
Views: 51161
Reputation: 86
Flex Paper -- http://flexpaper.devaldi.com/
As of 6/29/2011 there is a GPLv3 version with logo, and a Commercial version. It can run stand-alone, or be downloaded as a SWC library to embed in your own Flex application.
Upvotes: 23
Reputation: 11
I've http://issuu.com/ which looks like just the ticket for what you're after
The best feature (for my project) is that it loads the PDFs 5 pages at a time, so getting the flash reader to try to display a 30Mb 200 page PDF won't mean loads of bandwidth
Upvotes: 1
Reputation: 738
I know it is a bit late, but this can be useful for people that come here from searches. ZViewer is a pdf file viewer based on swftools: http://swfviewer.blogspot.com/
Upvotes: 2
Reputation: 51478
Scribd has their own proprietary Flash PDF Viewer called iPaper. The commercial product from Adobe is called FlashPaper. There are no free alternatives to that. So embedding is your closest option.
The embed tag is very simple:
<embed src="MyPdfDocument.pdf" width="500" height="375" />
Here's an example of how that looks.
Upvotes: 6