vote up 1 vote down star

What I'm trying to achieve is to determine if the Postscript that I'm parsing contains any element that resides in a table (box)... Thank you in advance...

Cheers,

RWendi

flag

7 Answers

vote up 2 vote down check

Sounds like you are trying to draw something and test if any part of draws within some specified box. You can create a path for the thing to be tested (just don't stroke or fill it), and create another path for the box (e.g. a table cell). Leave these two paths on the stack, and use one of the operators inufill, inustroke, etc.

If you happen to have the Postscript Language Reference 3rd edition, the goodies are listed under "Insideness-Testing Operators" on p. 520, with details in the alphabetical section following that.

link|flag
vote up 0 vote down

What do you mean, exactly? Are you asking whether PostScript has built-in array or hash table functionality, or are you asking whether it has a built-in way to lay out tabular data on the page?

link|flag
vote up 0 vote down

Im asking whether if it had a built-in way to lay out tabular data on the page... My guess is that postscript doesnt have a concept of a table, cos I couldnt find it anywhere in the spec...

The problem that i need to solve is, I need to find a way to know if certain postscript lies inside a table...

Cheers,

RWendi

link|flag
Could you please edit your question to include this clarification? – William Keller Sep 24 '08 at 3:31
here, hear! (i don't know if it's "here, here" or "hear, hear" so this way i'm guaranteed to be 1/2 right, not all wrong) And ask a full self-contained question, not refer to the title which might be trouble for searches, viewing from other contexts etc – DarenW Sep 24 '08 at 3:41
vote up 0 vote down

Short answer is no. it's a low level language for describing where to put ink on a page, no concepts of organizing it besides lines, arcs and beziers connecting x,y points put on the stack.

That said - i have written postscript by hand, and it would be smart to create variables, or arrays of x and of y values to use for aligning points. The arrays would be especially useful inside a for loop which renders the contents and draws border lines. Beware of fencepost bugs!

link|flag
vote up 0 vote down

dang that's bad news...

I tried running the document comparison feature in adobe 9, i had table documents where I got 2 rows being repetead in content on one document, and on the other document there's just one row... Somehow adobe is able to pick the right column and shows it as inserted/deleted... adobe must've done some kind of mapping with all the lines defined in the document to define a table...

cheers,

RWendi

link|flag
vote up 0 vote down

Thanks DarrenW, that should be usefull...

Not trying to draw anything... What Im trying to do is to determine if the postscript that im parsing contains any element that resides in a table (box)...

Cheers,

Rwendi

link|flag
vote up 0 vote down

Hmm... that's a potentially tricky one... are you trying to do this on arbitrary PostScript files, or do you have some a priori knowledge of their layout and structure? Due to the extremely low-level nature of PostScript, I suspect that any solution you come up with will be very document-specific.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.