pdf

How do I detect in C# whether or not a Word instance has the Save as PDF or XPS add-in?

I am using Visual Studio 2010 with Visual Studio Tools for Office installed. I will be interfacing with Word through its PIA. My target Word version is at least 2003. Muhimbi has informed me that Save as PDF isn't available in 2003 so what I would like to do is check if it's available in the version installed (2003 and later) and then...

Submitting a Form (Feedback) in PDF to a PHP File in Server

Hi, I am trying to implement a feedback system from a PDF file. I have set all the necessary fields and have added a button for submitting it in HTML format. In the server I have a PHP script running which processes the QUERY tags sent from the PDF as Feed back. So far so good, but after submitting the PDF Form, the PDF is showing an e...

Pdf full text search on iPad with Quartz 2D

Hi guys :) I am trying to implement full text search using Quartz 2D but it's a nightmare. I can "extract" text from pdf page using PDF Operator (TJ and other...) CGPDFOperatorTableRef myTable; myTable = CGPDFOperatorTableCreate(); CGPDFOperatorTableSetCallback (myTable, "BT", &op_BT); CGPDFOperatorTableSetCallback (myTable, "Td",...

How to merge two PDF files into one in Java?

I want to merge many PDF files into one using PDFBox and this is what I've done: PDDocument document = new PDDocument(); for (String pdfFile : pdfFiles) { PDDocument part = PDDocument.load(pdfFile); List<PDPage> list = part.getDocumentCatalog().getAllPages(); for (PDPage page : list) { document.addPage(page); } ...

A simple PDF viewer windows form

I want to display a pdf file in some viewer control by just defining its path without any need for Adobe Acrobat Reader installation. Is there any open source controls for this ? (with c#) ...

Convert LaTeX to ePub

I'd like to convert some university papers from LaTeX into ePub format - without using PDF as intermediate format. You know, PDF is page-oriented, while ePub is more flow-oriented. While I found several hints, I failed to find a good 'standard' solution. Could someone please propose the ideal way? One which keeps mathematical formulas ...

what to use libharu c++ or i text java

i need to create pdf creation server and i don't know what is the best tools to chose java itext engine or c++ libharu , programming is not the problem c++ and java is the same to me . but i need something that will be fast so c++ libharu is good but iText i know its more rebust and complete . are those assumption true? ...

Problem with using quartz 2d to draw a PDF

I have problem with quartz 2d to draw a pdf, I have it up and running fine but I am not so sure how to progress to the next page Here's the code -(void)drawInContext:(CGContextRef)context{ CGContextTranslateCTM(context, 0.0, self.bounds.size.height); CGContextScaleCTM(context, 1.0, -1.0); CGPDFPageRef page = CGPDFDocu...

RTF to PDF in Java

We are building an application which partially interacts with other system. We are pulling some data from the other system which is returned as RTF document. But we have to prevent users from editing this file, so we thought about converting it with iText into PDF. Code snippet: // moving the rtf data into input stream to be use...

Adobe PDF Reader component (AcroPDF.dll) - is it possible to access table of contents and bookmarks from code?

I'm using the above DLL in my .NET project. It seems to make different functions accessible, but I can't find bookmarks and table of contents. Is it possible to access those? Also, any manuals/guides available for this component? ...

Partial pdf page rendering on CATiledLayer

I'm using CATiledLayer to render a heavy pdf page inside a UIScrollView that is used to handle zooming and spanning.. The method below is called every time a Tile need to be drawn and I regret that I have to paint the whole pdf every time. I hope that behind the scene the CATiledLayer only render the part that it needs but nothing is l...

iphone pdf reader (remember which page its on)

I have been attempting to make my pdf reader app remember which page its on when changing orientation (at the moment it goes back to the first page every time the orientation switches). Here is my working code: - (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)durat...

Liferay: PDF saving filename

I can serve PDF files no problem with Liferay but when I try to save them they just get the filename from the url like such: http://localhost:8080/c/document_library/get_file?uuid=7a75925d-77f6-4d8a In this case when hitting the Save button in the Acrobat reader plugin the suggested filename will be get_file. Any idea on how to preser...

Form Field font in iTextSharp

How to get the font of some Form Field in existing PDF using iTextSharp? ...

Looking for the better way to make a kind of PDF reader w/ iOS 3+

Hi, I'm trying to make an iPhone application which can read PDFs in full screen and follow links on PDFs, but I can't find the right way to do it. First, I tried to use an UIWebView to read the PDF file, but it doesn't work exactly as I wanted (I was'nt able to fix the link problem). The second solution was to use the Quartz API to re...

Scalability characteristics of BIRT PDF generation

I am considering using BIRT for a bursting PDF reporting application and wondered if anyone had any experience of using it in this way, especially what the scalability characteristics are of the PDF generator. I will need to generate 100,000 summary report PDFs of no more than 2 pages each in a single batch on a weekly schedule. There ...

Google Docs API question.

Hello! I'm interested in possibility, to export PDF files to Google Docs, and than I want them to be shown on my web page, with user friendly interface. Plus, I want to make, that registered users of my web page could download them for money using credit cards, SMS, or web payment systems. Also, I need to have a statistics of all that th...

PDF fonts not visible properly

Hi,I am using ghostscript 8.63 to split the pdf document as individual pages. Problem is for some pdf's in the splitted pdf document fonts are overlapped (black patches). observed for verdana-bold fonts text. I copied all the fonts required for gostscript to -sFontPath directory, and ghostscript also opening the verdana, verdana-bold fo...

How can i print first page of a pdf document in C# using Acobat Reader?

I want to print first page of a pdf document. Now i can pring all pages of pdf document. But i need to print firsft page. I am using Acrobat Reader and my programming language is C#. ...

PDF rendering issues on iPad

Hi there, I have two questions related to handling PDF rendering on iPad/iPhone. First I'm getting some strange issues when rendering PDF page with CGPDF functions on iPad. Strange, because everything works quite fine on iPhone, but on iPad I'm getting lots of error messages related to PDF, i.e. like below invalid stream length 9785;...