Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PCL to ASCII

Status
Not open for further replies.

fenix02a

Programmer
Joined
Apr 30, 2003
Messages
1
Location
CO
I need convert a PCL file without graphics to plain text.

Can someone help me???

Thank you very much
 
Most of PCL is plain text with the exception of CHR$(27).
The main exception to this would be raster graphics I guess
that could have all "text" or lots of control characters
depending on what the graphic is

I have written several programs (basically the same program)
to create a program from a pcl file.

It reads the file 1 char at a time, and if it is <32 or >126
then it puts &quot;CHR$(value)&quot; of the actual character.

(watches for CRLF too)

Usually it needs some editing but to get back a lost creation program it works pretty well usually.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top