We are looking for a web control capable of displaying PDF files, videos and power point presentation. This is part of research school web site, where students can view these files. No download should be permitted. Appreciate your suggestions!
We have used PDF.js (https://mozillalabs.com/en-US/pdfjs/) which is very good and download could be prevented
Related
I need some help doing the layout for a PDF page using iTextSharp. If you are willing to help me, this is what I am looking for:
Information in red is info I will have to fetch from a db and put in.
Unfortunately I do not know the ins and outs of iTextSharp, mainly just the basics and I don't have the time at the moment to browse through the eBook they provide. I am busy finishing off other sections of this project and this would be a nice add on if anyone could help.
I'm looking for the best way to display pdf document on a website. Surely I need to convert it to jpeg or gif for the browser to handle it. I read few posts but most refer to GhostScript and its pdf2image. But that solution calls for starting a process that would save a copy of pdf doc to the file system and then would have to be loaded back into memory for displaying. Frankly I find it a bit clumsy. For those of you who have done it, what library you used and if you could attach a link to some examples, I'd greatly appreciate it.
I'm developick a web application that helps manage manufacturing process and is accessed fron android tablets. Company has a stockpile of documentation in pdf files that is to be delivered to production managers. I'd love the solution to be akin Crystal Report Viewer contron but I I understand that I have to stick to pdf to image conversion. Please give me some advise here.
My advice is don't over think this.
You can simply add a link to the PDF file, which will open on a new tab.
You can take a look at http://mozilla.github.io/pdf.js/ which will allow you to render a PDF on the client side.
Or if you decide to go with a Ghostscript, you can take a look at http://ghostscriptnet.codeplex.com
By all accounts the PDF Focus .NET library seems to be the best solution. A wrd of advice is to add a cleanup method to the page unload to delete all temporary files that were used to feed source into image controls when displaying pictures on a website.
I am looking for a simple way to view NOT edit either rich text formated files or pdf files on a website that will display well on an ipad. Basically I have a directory of word and power point documents I need to display. I can easily convert them to rtf or pdf or save them up to a database as varchar(max), whatever works best for displaying on site. I can handle the processing of the documents but how do I display them on the site. Thanks in advance.
You can use google document viewer fairly easily within your website.
<iframe src="http://docs.google.com/viewer?url=urltoyourdoc&embedded=true" width="600" height="780" style="border: none;"></iframe>
you can find more details here
https://docs.google.com/viewer
I need to make a windows desktop application in c# that downloads all the PDFs from a website. I have the link to the website but the problem i am facing is that the PDFs are not in a specific folder on the website but are scattered all over.
The thing i need is help at finding all those links so i can download them or any other advices that could help me with my problem.
Thanks to all help in advanced.
Scrape through all the pages
Find all the "*.pdf" URLs
Reconstruct them and simply download :)
Please be more specific are you trying to get all the PDFs from the html page or from the whole domain ?
What you are trying to do is known as Web scraping, there are some libraries which can make your task easy one of them is IronWebScraper but its paid one.
An extensive list of NuGet packages is available here which can be used for web scraping purpose.
In my current project I have the following situation: A multipage PDF gets rendered by some nasty software into a flash film. My job is to display that rendered flashfilm (will be rendered as file) in my current asp.net application.
I don't know what the rendered flashfilm will look like, but I assume all flash files behave the same? Or are there differences I should know about.
What options do I have to display that flashfilm? Does ASP.net support some built-in object oriented control that allows me to display flashfilm?
You can easily display any flash file by using a plethora of techniques. And it's not built-in, but there are a number of controls and other libraries built by the community to deal with displaying flash content in asp.net, such as Flash Control (http://flash-control.net/)
what you refer to as a flash film is a .swf file. the recommended way to embed .swf files is SWFOBject , a javascript library
http://code.google.com/p/swfobject/
now, i'm no asp specialist , but you may be able to fill the gap between javascript & asp.
hope it helps!