Re: [iText-questions] PDF Table

2012-02-13 Thread Jason Berk
http://www.foolabs.com/xpdf/download.html I have used pdftotext like so: pdftotext -layout -x 0 -y 745 -W 130 -H 18 test.pdf - it's an amazing tool and has saved me a few times when I needed to "inspect" the actual PDF and extract a small amount of consistently positioned textlike o

Re: [iText-questions] PDF Table

2012-02-13 Thread Gerold Krommer
This is next to impossible. By rendering to PDF usually all structure information is lost (unless marked). A table in PDF is a collection of lines and text, maybe images also. You could apply some heuristics if the table characteristics are fairly static, everything else is hara-kiri. Kind rega

[iText-questions] [ANN:] iText Summit 2012

2012-02-13 Thread Bruno Lowagie
Hello all, the registrations for the iText Summit 2012 are now open: http://itextpdf.com/summit.php The ideal way to get an update on what's new in iText, and to meet some of the people who are active on this mailing-list. best regards, Bruno ---

[iText-questions] PDF Table

2012-02-13 Thread Saravanaganesh N
I need to extract cell contents from a table present in the pdf file.please give some suggestions and code snippets for this. Thanks in advance. =-=-= Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged infor

Re: [iText-questions] Font subsets document

2012-02-13 Thread Leonard Rosenthol
Don't use a PDF as a template this way. Either use a form or do the replacement in some other format and then convert. From: Peter van Raamsdonk mailto:peet...@hotmail.com>> Reply-To: Post here mailto:itext-questions@lists.sourceforge.net>> Date: Sun, 12 Feb 2012 23:05:57 -0800 To: Post here ma

Re: [iText-questions] [RESOLVED] Split PDF by plain Bookmark

2012-02-13 Thread gdn13
New attempt :) PdfReader inputPDF = new PdfReader(filename); inputPDF.consolidateNamedDestinations(); List> bookmarks = SimpleBookmark.getBookmark(inputPDF); [...] for (HashMap bookmark: bookmarks) { String title = bookmark.get("Title").toString();