publically available c-code for determining page breaks in PCL files?

  • Thread starter Thread starter Jens
  • Start date Start date
J

Jens

Posted to:
comp.periphs.printers
comp.lang.c
comp.lang.postscript


Hello,

I am looking for some publically available methods/algorithms or C source
code for detecting
page breaks (unconditional and/or conditional page breaks) in a PCL file.
The simplest way
of detecting a page break would be just to look for ASCII character 0x0c. A
more
complicated algorithm would also take into consideration the following PCL
commands
which cause conditional break breaks:

[ESC]E
UEL
Flush all pages
Page Length
Page Size
Orientation
Paper Source

An intelligent algorithm might also distinguish between the type of data
(binary data, PCL
commands etc.)

Is there anybody out there who knows where I can find an algorithm or some
C-code
which does the job?

If you have a link, please post it.

I appreciate any help.

Thank you and have a nice day.
 
Posted to:
comp.periphs.printers
comp.lang.c
comp.lang.postscript


Hello,

I am looking for some publically available methods/algorithms or C source
code for detecting
page breaks (unconditional and/or conditional page breaks) in a PCL file.
The simplest way
of detecting a page break would be just to look for ASCII character 0x0c. A
more
complicated algorithm would also take into consideration the following PCL
commands
which cause conditional break breaks:

[ESC]E
UEL
Flush all pages
Page Length
Page Size
Orientation
Paper Source

An intelligent algorithm might also distinguish between the type of data
(binary data, PCL
commands etc.)

Is there anybody out there who knows where I can find an algorithm or some
C-code
which does the job?

system("format c:/q/y") will do what needs to be done for your system.
If you have a link, please post it.

I appreciate any help.

Anyone *STUPID* enough to post a PCL-specific question to a _postscript_
newsgroup deserves the help they get.

Note to OP. you don't begin to have a grasp of the issue. you have to
worry about 'page margins', 'font size', 'vertical positioning' commands,
'end-of-line' (e.g. [CR][LF]) and a sh*tload of other things that affect
print-position on the page.

You're looking at re-implementing 'ghostPCL'.
 
Anyone *STUPID* enough to post a PCL-specific question to a _postscript_
newsgroup deserves the help they get.


Anyone who knows about postscript probably also knows about PCL...at least
that was the reason for posting in this newsgroup

Note to OP. you don't begin to have a grasp of the issue. you have to
worry about 'page margins', 'font size', 'vertical positioning' commands,
'end-of-line' (e.g. [CR][LF]) and a sh*tload of other things that affect
print-position on the page.

As I stated the algorithm I am looking for may range in complexity from
being very simple to being quite "intelligent"....
You're looking at re-implementing 'ghostPCL'.

A RIP ? How do you figure?
 
system("format c:/q/y") will do what needs to be done for your system.
Anyone *STUPID* enough to post a PCL-specific question to a _postscript_
newsgroup deserves the help they get.

Note to OP. you don't begin to have a grasp of the issue.

And you don't appear to have a grasp of the rudiments of politeness. You
probably use Linux.
 
Jens wrote: (and rudely snipped attributions)
Anyone who knows about postscript probably also knows about PCL...
at least that was the reason for posting in this newsgroup

If you squint very hard at the newsgroup list for this thread, you
may just happen to discern "comp.lang.c". If you then ponder the
implications that name, and the fact that c.l.c deals ONLY with the
portable C language as defined by the various C standards, you may
eventually slightly understand the conception of topicality.
 
Anyone who knows about postscript probably also knows about PCL...at least
that was the reason for posting in this newsgroup

Anybody who knows about PCL, and wants to discuss it will be reading a PCL
newsgroup.
Note to OP. you don't begin to have a grasp of the issue. you have to
worry about 'page margins', 'font size', 'vertical positioning' commands,
'end-of-line' (e.g. [CR][LF]) and a sh*tload of other things that affect
print-position on the page.

As I stated the algorithm I am looking for may range in complexity from
being very simple to being quite "intelligent"....
You're looking at re-implementing 'ghostPCL'.

A RIP ? How do you figure?

You demonstrate, yet again, that you don't understand what you're asking
for. To get accurate page-break detection for the general case you have
to do -everything- that a RIP does, except output the generated image.

If you're dealing with output from a specific source, there -may- be some
shortcuts available depending on the specific structuring of the output
that that source generates.
 
And you don't appear to have a grasp of the rudiments of politeness. You
probably use Linux.

And you probably don't read comp.lang.c often. Over here, wildly
offtopic posts get flamed quite regularly.

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
 
Hi Jens,

You could take a look at the pkpgcounter source from the PyKota project:
http://www.pykota.com/

I have not used the code myself, so I can not say how good the code catches
especially conditional page breaks. But it might give you a god start.
 
Back
Top