Re: [iText-questions] object level document analyis of PDF files

2010-07-15 Thread Leonard Rosenthol
itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] object level document analyis of PDF files I want to get group of path objects by navigating to next operation(BT, BI, sh, DO) instead of getting a path object by navigating to path object strike/filling operators in a content stream

Re: [iText-questions] object level document analyis of PDF files

2010-07-15 Thread sal salaimani
I want to get group of path objects by navigating to next operation(BT, BI, sh, DO) instead of getting a path object by navigating to path object strike/filling operators in a content stream of a page of PDF doc. I get 2 or 3 groups of path objects for a chart instead getting 'n' number of path o

Re: [iText-questions] object level document analyis of PDF files

2010-07-14 Thread Leonard Rosenthol
The end of a path is the stroke/fill operator - NOT the next operation. -Original Message- From: sal salaimani [mailto:newoutlo...@yahoo.com] Sent: Wednesday, July 14, 2010 5:30 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] object level document analyis of

Re: [iText-questions] object level document analyis of PDF files

2010-07-14 Thread sal salaimani
Hi Leonard After referring page 113 of figure 9 of PDF32000_2008.pdf, I came up with my own heuristics to parse path object (at least major parts(line and rectangles) of chart ).I look for 'm' or 're' operators to mark beginning of path object(s) and look for BT, sh, Do, BI operators to mar

Re: [iText-questions] object level document analyis of PDF files

2010-07-12 Thread Leonard Rosenthol
outlo...@yahoo.com] Sent: Monday, July 12, 2010 12:54 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] object level document analyis of PDF files Bruno wrote: I think it's feasible to extend the available parser functionality. In the book, there's an example that dr

Re: [iText-questions] object level document analyis of PDF files

2010-07-12 Thread sal salaimani
Bruno wrote: I think it's feasible to extend the available parser functionality. In the book, there's an example that draws a rectangle that contains all the text on a page. There is no such functionality (yet) to get the bounding rectangle of a shape, but it should be doable with some extra prog

Re: [iText-questions] object level document analyis of PDF files

2010-07-08 Thread 1T3XT info
sal salaimani wrote: > I am looking for implementation logic or algorithm to parse path > object(graphics object) from a PDF file. As we all aware , iText API does > not have the capability to parse path object , Yes it has. Look at chapter 15 of the second edition of "iText in Action", or at the

[iText-questions] object level document analyis of PDF files

2010-07-08 Thread sal salaimani
I am looking for implementation logic or algorithm to parse path object(graphics object) from a PDF file. As we all aware , iText API does not have the capability to parse path object , I pursued to review PDFbox and multivalent APIs to grasp the implementation logic to parse path object. I could