Technical data
Table Of Contents
- 0. i Cover B
- 0. i Copyright B
- 0. i TOC B
- 1. i Introduction B
- 2. i Programming Concepts B
- 3. i Code Quick Reference B.backup
- 4. i Standard Command Codes B
- 5. i Optional Command Codes B
- 6. i Bi-Directional Communications B
- 7. i Appendix B
- 7
- appendix
- custom graphics
- CUSTOM GRAPHICS EXAMPLE
- 1. Determine the matrix size for the graphic. It must be in 8 dot by 8 dot blocks. The example here has six blocks horizontally and six blocks vertically (48 x 48).
- 2. Lay out a grid and draw the image on the grid.
- 3. Transfer the image into a bit map representation and then into hexadecimal format:
- 4. Using the hexadecimal data, send the following code to print the graphic image as designed.
- 5. To send the data in binary format, the software must convert the data into binary format before transmitting it to the printer. Using the BASIC programming language for example, this is done by notation “CHR$ (&HC0)” which sends the hexidecima...
- PCX GRAPHICS EXAMPLE
- CUSTOM GRAPHICS EXAMPLE
- printer configuration commands
- reference tables

Unit 4: Standard Command Codes
“i” Programming Reference
4-54 PN: 9001158B
GRAPHIC COMMANDS
GRAPHICS, CUSTOM
FUNCTION
To create and print custom graphics (logos, pictures, etc.) on a label.
FORMAT
<ESC>Gabbbccc(data)
a = Specifies format of data stream to follow B Binary format H Hexadecimal
format
bbb = Number of horizontal 8 x 8 blocks
ccc = Number of vertical 8 x 8 blocks
(data) = Hex data to describe the graphic image
Place anywhere within the data stream after the necessary position commands.
EXAMPLE
<ESC>A
<ESC>H0100<ESC>V0100<ESC>GH006006
FFFFFFFFFFFFFFFFFFFFFFFFC00000000003
C00000000003C000FFFFFFF3C00080000013
C00080000013C0009FFFFF13C00080000013
C00080000013C0009FFFFF13C00080000013
C00080000013C000FFFFFFF3C00000000003
C00000000003C00000000003C00000000003
C00000000003C00000000003C00003C00003
C00007E00003C0000FF00003C0000FF00003
C0000FF00003C0000FF00003C00007E00003
C00003C00003C00003C00003C00003C00003
C00003C00003C00003C00003C00003C00003
C00003C00003C00003C00003C00003C00003
C00003C00003C00001800003C00000000003
C00000000003FFFFFFFFFFFFFFFFFFFFFFFF
<ESC>H0300<ESC>V0100<ESC>XSPLEASE PLACE YOUR DISK
<ESC>H0300<ESC>V0150<ESC>XSIN A SAFE PLACE
<ESC>Q1<ESC>Z
OUTPUT
(4-30)
NOTES
Graphic images may be printed along with other data to enhance label appearance or eliminate the
need for preprinted label stock. Using a dot-addressable matrix, design the graphic image in 8 x 8 dot
blocks, then send it in a binary format to the printer.
Do not use <ESC>CR or <ESC>LF characters as line delimiters within graphic data or the actual image
will not be printed as specified. A custom graphic cannot be enlarged by the Character Expansion
<ESC>L command and is not affected by either of the Rotation commands. Always design the graphic
image in the appropriate orientation.