pdf

How to index .doc and .pdf files in asp.net

How do I index .doc and .pdf files stored in a database (which uses MS SQL Server) in asp.net (C#)? ...

Pdf to Swf conversion using Java

Does anybody know a Java tool that can convert a pdf file to a swf file ? To clarify, we are building a site to generate photo albums. The photo album editor is written in Flash (ActionScript 3.0) and then on the back-end is written in Java and it generates a pdf for the album. The problem is having two rendering engines (Flash for clie...

PDF to TIFF free library in Windows?

Hey guys, i've got a hundred pages long high quality PDF (66MB) that needs to be converted to TIFF format (300 dpi, as high quality as possible :P). I've tried Imagemagick/ghostscript, jpedal, Poppler, XPDF but they all produce different results due to the strange gradient of the PDF itself (blame the designers) and some actually take ...

converting PDF to formatted ASCII - what's the state of the art?

I'm looking for a utility or library for extracting text from PDFs and formatting it in plain text while keeping as much of the original layout as possible (eg tables, columns etc.). We're currently using pdftotext but I was wondering if there's anything better. It has to be a command-line tool or a library we can link into our app. Is...

How do I convert a web page to PDF in ASP.NET?

I have a webpage with some data in a table and I would like to offer my users the option to download it as a PDF File, how can I do that in ASP.Net? ...

PdfSharp save to MemoryStream

I want to save a PDFSharp.Pdf.PDFDocument by it's Save method to a Stream, but it doesn't attach the pdf header settings to it. So when I read back the Stream and return it to the user, he see that the pdf file is invalid. Is there a solution to attach the pdf header settings when PdfSharp saves to memory? ...

PDF Security

I have a question about PDF security preferences. Can I change an editable pdf to readable pdf programmatically? ...

Convert PDF to ReadOnly in browsers

Can any one tell me how can i convert a PDF file to a format which does not have a copy /sve option in it in C# ? I want to show some pdf in browser where it should restrict users from downloading the PDF file. ...

How to calculate the height of a MultiCell/writeHTMLCell in TCPDF?

I try to create a PDF with multiple pages and need to calculate the height of each individual element (MultiCell) in advance to prepare for a page break. According to the documentation there are a couple of functions out there like GetCharWidth/GetStringWidth to support me in doing it on my own, but besides a potential performance lost I...

ASP.NET + C# -- Exporting Crystal Report to PDF -- Error + Upgrade Needed?

I'm maintaining a multi-project solution in ASP.NET + C#. We've decided to upgrade to .NET Framework 3.5 and ASP.NET 2.0. One of the last issues with the upgrade is with Crystal Reports. I'm getting the following error: Method 'ISCREditableRTFExportFormatOptions_reserved5' on type 'CrystalDecisions.ReportAppServer.ReportDefModel.Editab...

Report Viewer Landscape pdf export

hi, what is to do to set landscape for a pdf export ? using of System.Drawing.Printing.PageSettings before a refresh doesn't work. Type tip = reportViewer1.GetType(); FieldInfo[] pr = tip.GetFields(BindingFlags.Instance | BindingFlags.NonPublic); System.Drawing.Printing.PageSettings ps = new System.Drawing.Prin...

Java Library for PDF Rendering

Does anyone know a good library for PDF rendering for Java? Ideally, it should support not only displaying the image but also retrieving the text from it, finding which text is at a certain location, etc. ...

Which Java based PDF rendering library should I use for printing?

I know about PDFRenderer ICEpdf JPedal Ghostscript to convert PDF->PS, then print with javax.print.* My primary concern is printing a PDF file to a printer. The other features like displaying, PDF modifications, ... are nice-to-have. All libraries promise similar features, but I'm afraid that when I choose one I might encounter prob...

Multithreaded Html to Pdf conversion via Single-Threaded Qt

Hello, I am using Qt webkit Jambi API's to convert HTML to PDF. My target is to create a jar for above conversion so that it could be used in a multithreading environment, but since QWebPage and QWebframe (QT webkit) are GUI classes, therefore the jar classes cannot be initialized from child threads. So i am stuck as i don't know how ...

PDF Javascript export attachment

I'm looking for solution for exporting attachments from pdf and I find some interesting stuff here: http://www.acrobatusers.com/tutorials/importing-and-exporting-pdf-file-attachments-acrobat-javascript But, I have problem when using this code: this.exportDataObject({cName:"MyDoc", nLaunch:2}); I always get this error: TypeError: Inv...

How to extract data from a PDF?

Hi, My company receives data from an external company via Excel. We export this into SQL Server to run reports on the data. They are now changing to PDF format, is there a way to reliably port the data from the PDF and insert it into our SQL Server 2008 database? Would this require writing an app or is there an automated way of doing...

Fully Embedding True Type Fonts into PDFs

I am having problems creating PDF documents with fully embedded True Type fonts. I am printing from MS Word (and Indesign) to the Adobe 9.0 print driver. I can get .otf fonts to embed with no problem, but .ttf files will not embed. Is it possible to fully (not subset) embed these fonts? I am specifically having problems using WingDings. ...

How to set Printer Settings while printing PDF

I'm trying to print a PDF file using Process object. And upto certain extent I could print it successfully. But now I want to set printer properties.. like no of copies, Paper size etc. But I don't see any property to set these values. I'm using following code to print PDFs string fileName = ""; string arguments = ""; ...

Flex problem in saving PDF at server

Hi All. I am a new bee to flex. What i am trying to do is to generate and save the layout design which nothing but canvas to a pdf format at the server. Currently i am able to display the pdf in browser (see the function below:) but cannot save the file at the server. private function continueToPdf():void{ myPDF = new PDF( Orienta...

number of pages in a pdf file

Does anyone know how I can count the number of pages in a pdf file using php? Thanks! ...