Tagged Questions

25
votes
13answers
10k views

PDF parsing library for Android?

I'm looking for a fast PDF library, even commercial is okay. Problem of opensource java PDF renderers that they are based on awt/swing which is not available on Android, so this need to be adopted to ...
21
votes
1answer
19k views

How to render PDF in Android

In my application I will receive a byte stream and convert it to a pdf file in the phone memory. How do I render that to a pdf? And show it on an activity?
15
votes
10answers
3k views

Converting HTML files to PDF

I need to automatically generate a PDF file from an exisiting (X)HTML-document. The input files (reports) use a rather simple, table-based layout, so support for really fancy JavaScript/CSS stuff is ...
12
votes
4answers
1k views

Does anyone know of a fork of iText?

Now that iText has gone AGPL, I'm assuming someone is going to take the old (2.1.7 or 4.2.0) code and fork it to keep an LGPL version going. Does anyone know of such a fork already started?
12
votes
9answers
11k views

Java library for converting Word documents to PDFs or images

What I need to do is convert Microsoft Word .doc files to PDFs or images. This has to occur in Java. I have done a fair bit of investigation already. I've tried Davisor Publishor but it doesn't give ...
8
votes
6answers
1k views

PDF library for Java

Does anyone know a good pdf library for Java ? My specific requirement is to find co-ordinates of the text in pdf file. If anyone knows, some pointers will be helpful.
8
votes
2answers
979 views

Java PDF Library that works on GAE?

Since GAE has severe restrictions like - "A Java application cannot use any classes used to write to the filesystem"... Is there a good Java PDF library that can write the PDF to memory for streaming ...
8
votes
9answers
4k views

How do you create a PDF from XML in Java?

At the moment, I'm creating an XML file in Java and displaying it in a JSP page by transforming it with XSL/XSLT. Now I need to take that XML file and display the same information in a PDF. Is there a ...
7
votes
3answers
670 views

Java PDF manipulation and rendering

I am hoping for this question to become a comprehensive guide to PDF manipulation and rendering in Java. I have a fairly comprehensive implementation by stitching together multiple open source ...
7
votes
7answers
3k views

Parsing PDF files (especially with tables) with PDFBox

I need to parse a PDF file which contais tabular data. I'm using PDFBox to extract the file text to parse the result (String) later. The problem is that the text extraction doesn't work as I expected ...
7
votes
9answers
5k views

Silent Printing of PDF From Within Java

We are looking into silent printing of PDF documents from within Java. The printing will be invoked from the desktop and not through a browser so we cannot use JavaScript. PDF Renderer is an ...
7
votes
11answers
4k views

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 ...
6
votes
6answers
158 views

How can I merge individual selected PDF files into one PDF upon download?

How can I merge individual selected PDF files into one PDF upon download? I want to achieve the following: http://annualreport2010.landsecurities.com/create-your-own-report.aspx Do I require an ASP ...
6
votes
3answers
266 views

What is the easiest way to extract data from a PDF?

I need to extract data from some PDF documents (using Java). I need to know what would be the easiest way to do it. I tried iText. It's fairly complicated for my needs. Besides I guess it is not ...
6
votes
1answer
627 views

PDF to Image conversion

public class Pdf2Image { private Image image; int length; public int convertPdf2Image(String pdfname) { File file = new File(pdfname); RandomAccessFile raf; try { ...
6
votes
5answers
828 views

Java - converting html with images in CSS to pdf

I am looking for a free java library to convert html to pdf. Html page is formatted with CSS, and those styles contains images (.gif). At the moment I am using Flying Saucer but this library cant ...
6
votes
2answers
3k views

Create thumbnail image for PDF in Java

I'm looking for a Java library that will can take a PDF and create a thumbnail image (PNG) from the first page. I've already looked at JPedal, but its insane licensing fee is completely prohibitive. ...
6
votes
2answers
3k views

Open PDF file on fly from Java application

Is there any way to have a code where it can be used to open PDF file in Java application but do not side to any platform. I mean using batch file in Windows could do that. Can it be any other way to ...
6
votes
4answers
1k views

Are there any credible alternatives to iText for programmatic PDF generation within Java?

Anyone come across anything else that is similar or close in quality/features? Cheers.
6
votes
11answers
5k views

Are there any Java PDF creation alternatives to iText?

I am trying to render about 100,000 - 80 column records through FOP and it tanks pretty much everytime (OutOfMemoryException). I know iText could handle that kind of load but I can't use it because of ...
6
votes
7answers
2k views

Extracting text from a PDF file

I need to extract the text from a PDF file. This text will likely be in a table format, and it is going to be used for automatic transfer of data between an external party and our systems. Can anyone ...
6
votes
5answers
2k views

Best tool to check and ensure PDF/A compatibility under Linux

I am working on an online portal, where researchers can upload their research papers. One requirement is, that all PDFs are stored in PDF/A-format. As I can't rely on the users to generate PDF/A ...
6
votes
13answers
8k views

XML to DOC to PDF

what is the easiest(and fastest) way to perform this kind of transformation: "Data in XML" to "Some MS Word 2003 Supported format" to PDF using Java? My first guess was to fill the template with XML ...
5
votes
1answer
142 views

How to solve pdf header signature not found error?

I'm using iText in my java program for editing an existing pdf.The generated pdf could not open and it shows pdf header signature not found error.I'm using both my input and output file in a same ...
5
votes
4answers
343 views

Extract Image from PDF using Java

i am working the a project. what i need to do is extract image from PDFs file. it is a bit different from the similar questions. the PDFs are like these. Documents are printed out first, then they ...
5
votes
1answer
516 views

How can I remove all images/drawings from a PDF file and leave text only in Java?

I have a PDF file that's an output from an OCR processor, this OCR processor recognizes the image, adds the text to the pdf but at the end places a low quality image instead of the original one (I ...
5
votes
7answers
3k views

Java PDF Renderer

What is the best library to render PDF files in Java? I want a library which is: pure java OR any platform independent library supports new PDF documents be Free
5
votes
8answers
5k views

PDF to image using Java

I want to convert PDF pages into PNG,JPEG/JPG or GIF. (But not to thumbnails. I need them in regular sizes) How can I do it using Java ? What are the available libraries in order to achieve this ? ...
5
votes
5answers
450 views

Is there any library to create pdf form and fields?

Is there any library to create pdf form and fields ? thanks for your suggestion.
5
votes
3answers
754 views

is Flying Saucer project closed?

Someone know what happened with Flying Saucer project? https://xhtmlrenderer.dev.java.net site down and I can't get access to manuals :( UPD: I have solved problem. It's seems thay have problems ...
5
votes
2answers
2k views

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 = ...
5
votes
5answers
7k views

iText - add content to existing PDF file

I want to do the following with iText: (1) parse an existing PDF file (2) add some data to it, on the existing single page of the document (such as a timestamp) (3) write out the document I just ...
5
votes
3answers
3k views

Free Java library for converting existing PDF to PDF/A

I am trying to convert PDF to PDF/A. Currently I can do this using OpenOffice pdf viewer plugin together with Jodconverter 2. But this is pretty cumbersome to do. Does anybody know of any open ...
5
votes
6answers
19k views

Java: Reading a pdf file from URL into Byte array/ByteBuffer in an applet

I'm trying to figure out why this particular snippet of code isn't working for me. I've got an applet which is supposed to read a .pdf and display it with a pdf-renderer library, but for some reason ...
5
votes
4answers
8k views

Parse Pdf File and write content in word file using java

how to Parse a PDF file and write the content in word file using Java?
5
votes
2answers
7k views

Vector graphics in iText PDF

We use iText to generate PDFs from Java (based partly on recommendations on this site). However, embedding a copy of our logo in an image format like GIF results in it looking a bit strange as people ...
5
votes
10answers
15k views

A good library for converting PDF to TIFF?

I need a Java library to convert PDFs to TIFF images. The PDFs are faxes, and I will be converting to TIFF so that I can then do barcode recognition on the image. Can anyone recommend a good library ...
4
votes
2answers
2k views

Compile & Fill Jasper Report - XML datasource

I am hoping someone can tell me why the code below is creating an empty pdf file every time...? I am trying to compile, fill and run the "xmldatasource" sample project that ships with JasperReports ...
4
votes
6answers
542 views

Print Microsoft Office and PDF files in Java

I am looking for APIs for Java that can print Microsoft Office and PDF files. I would also like to provide print specifications, even if there is no software for opening these files on the system. ...
4
votes
5answers
479 views

Page count of Pdf with Java

at the moment I am using itext to read the page count of a pdf. This takes quite long because the lib seems to scan the whole file. Is the page information somewhere in the header of the pdf, or is a ...
4
votes
4answers
322 views

Opening a PDF in a desktop application in Java

Is it possible to open or create a PDF file in a Java desktop application just like we can create text file? From my search I got that it is possible only with web java. Is that true?
4
votes
3answers
559 views

How to print a pdf to a specific tray with no user interaction in java

I'm trying to set up a service that runs at night to print a bunch of invoices and other documents automatically to a bunch of printers. As of right now I can print the documents fine, but I need to ...
4
votes
3answers
437 views

How to downgrade arbitrary PDF file to version PDF-1.2?

I have some user generated PDF files. Typically the files are be generated with Word, but they could be just a about any kind of valid PDF file. I'd like convert the file to version PDF-1.2 if they ...
4
votes
4answers
114 views

What are good sources for current developments in the “PDF” scene?

I need to keep in touch with current developments in the PDF ecosystem. This accounts to New standards New tools / new versions of tools Best practices. Background is serverside PDF processing (in ...
4
votes
2answers
663 views

Split one PDF page into two

i want to split one wide PDF page into two PDF pages. My original page is wide as two A4 page size but height is normal(for A4). I trying to use IText but with no effects. Thanks for attention.
4
votes
4answers
955 views

Best way or library to generate PDF format of invoices in Java

I am working on a project, one feature is to generate PDF format of invoices in Java. There seems to be many solutions, but I don't know which one is the best for invoices. Please advise, Thanks.
4
votes
5answers
565 views

Check if a PDF file is a scanned one

What is the best way to programmatically check if a PDF file is a totally scanned one? I do have iText and PDFBox at my disposal. I can check if a pdf file contains text or not, and according to the ...
4
votes
5answers
5k views

How to generate a PDF from JavaDoc (including overview and package summaries)

I have written extensive JavaDoc documentation on my application, and added lots of useful info at overview.html and package.html files (including links on the former to illustrations in doc-files/). ...
4
votes
4answers
662 views

Creating online help in Java Swing application - using pdf user docs

I am trying to link some user docs to my Java Swing application. The user docs are pdf and I would like to be able to click on a button in my application which opens up some sort of pdf renderer to ...
4
votes
4answers
2k views

Convert from PDF to Postscript using Java

I am having a J2EE based application, where I am using a reporting tool to generate outputs in PDF format. I need a utility/ tool in Java which can help me convert my PDF file to postscript format so ...

1 2 3 4 5 13