Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact us Request to publish your help manuals Request to remove your help manuals

Introduction
 » Morovia PCL Barcodes & More 1.5
Basic PCL Knowledge
 » Font Source
 » Font Characteristics
 » PCL Printer Command
 » Sending PCL Commands to Printer
Downloading Font to Printer
 » Windows
 » UNIX/LINUX
 » LPR
 » Verifying Fonts Existence
Selecting Fonts
 » Symbol Set Command
 » Pitch Command
 » Height Command
 » Typeface Family Command
 » Font ID
 » Best Practice
 » Adding Human Readable Text
 » Barcode String
Barcode Technologies
 » Code 3 of 9
 » Code 39 Extended
 » UPC-A
 » POSTNET
 » OCR-A & OCR-B
Support Details
 » Technical Support
 » Supplemental Information
 » Glossary
 

Downloading Font to Printer

You can download the fonts to the printer by writing some code. On the other hand, in many occasions you might want to do it under command prompt or in a shell environment. The downloading involves three steps:

  1. Designate a Font ID to the soft font. The Font ID should be unique among all soft fonts. The PCL command to use is <esc>*c#D, while # is the decimal value of the Font ID.
  2. Send the actual soft font.
  3. Make the font permanent by sending PCL command <esc>*c5F.

Step 1 and 2 must be carried out in one connection. If for some reason they can not be sent together in one command line, you need to merge data into one file and send this file instead. We'll explain how to achieve this soon.

There are several methods to send the data above to the printer, depending on the platform and connection choice. For example, if the printer is directly connected to a computer via a parallel port, or the printer is shared among a Windows network, you can use copy to send data to the printer. If it is a network printer connected to a TCP/IP network, you will need to use lpr command.

In preparation of downloading the soft font to your printer, consider that the number you will assign as the font ID. Each soft font must have an unique number associated. Any font with the same ID overwrites the previouse one. In the example we provided, we put the font ID command in file C80D.txt. Another file c5F.txt contains the command for step 3.

Barcode Generator Bookkeeping software Barcode software
Business financial software Billing software Accounting software

 

Windows

On Windows you can use copy/b command to send data to printer.

c:\> copy /b C80D.txt +mrvcode39_4pitch.sfp +c5F.txt LPT1:

If your operating system is DOS which only supports 8.3 file format, you need to shorten the file name before running the command.

If the destination printer is on the network, use the printer's network name in the place of LPT1. For example, the following command sends the font to a network printer which is shared as HPLaserJon computer Chicago:

c:\> copy/b C80D.txt +mrvcode39_4pitch.sfp +c5F.txt \\Chicago\HPLaserJ

Home | Contact us | Request to publish your help manuals | Request to remove your help manuals