Introduction: The positioning and advantages of EPL2
EPL2 (Eltron Programming Language 2) is the core page description language for Zebra desktop printers such as GK420, LP2844, G-Series, etc. Unlike the early line mode (EPL1), EPL2 adopts a "assemble first, print later" mechanism, which can efficiently process text, barcodes, graphics, and QR codes. Its syntax is concise and commands are compact, making it particularly suitable for quickly generating tags in resource constrained embedded environments.
This article is based on the official EPL Programming Guide (document number 14245L-003 Rev. A), which outlines common commands, form storage techniques, variable and counter usage, 2D barcode configuration, network settings (SGD), and common troubleshooting methods for engineers. It helps you quickly locate problems when developing or maintaining Zebra printing applications.
EPL2 Basic Concepts and Command Structure
2.1 Command syntax rules
Each EPL2 command starts with one or two case sensitive letters, followed by parameters (separated by commas), and ends with a line break (LF, ASCII 10). The carriage return (CR) will be ignored. The optional parts in the parameters are represented by square brackets, and the fixed data is enclosed in double quotation marks.
Example: A50,50,0,1,1,1, N, "Hello" - Print "Hello" at coordinates (50,50) using font 1, in normal orientation, without highlighting.
2.2 Image Buffer and Coordinate System
EPL2 uses a dot matrix coordinate system, with the origin (0,0) located in the upper left corner. The X-axis represents width, and the Y-axis represents height. All drawing commands (text, barcode, lines, boxes) are based on this coordinate system. Before printing, the image buffer must be cleared using the N command.
2.3 Media and Printing Control
Set label width (dots): q416 represents a width of 416 dots.
Q sets the label length and gap: Q160,24 represents 160 point labels+24 point gaps.
S sets the printing speed: S2 corresponds to 2 ips (inches/second), the specific value varies depending on the model.
D Set printing density: D5 range 0-15 (0 is shallowest, 15 is deepest).
P printing label: P1 prints one set, P2, Print 2 sets, with 3 copies per set.
Detailed explanation and practical skills of core commands
3.1 Text Printing - A Command
Command syntax: A p1, p2, p3, p4, p5, p6, p7, "DATA"
P1, p2: Starting coordinates (points)
P3: Rotation (0/1/2/3=0 °/90 °/180 °/270 °)
P4: Font selection (1-5 are built-in equal width Latin fonts; 8-9 are Asian double byte fonts; A-Z are soft fonts)
P5, p6: Horizontal/vertical magnification (1-6, 8, and 1-9)
P7: Normal (N) or reversed (R)
Tip: It is recommended to use the LE (Line Draw Exclusive OR) command to draw white text on a black background instead of the R parameter of the A command for more precise border control.
3.2 One Dimensional Barcode - B Command
The B command supports Code 39, Code 128, EAN/UPC, Interlocked 2 of 5, Codabar, Postnet, Planet, and more. The parameters include narrow bar width, wide bar width, barcode height, and whether to print readable characters.
Common problem: Barcode scanner cannot read barcodes in the "ladder" direction (rotated 90 °/270 °). Suggest using the "fence" direction (0 °/180 °) as much as possible. If rotating barcodes must be used, automatic optimization can be disabled through the oB command (but this may cause some scanners to fail to read, and Zebra does not guarantee compatibility).
Code 128 functional characters: Supports FNC1 – FNC4, automatically processes extended ASCII. For 5 or more consecutive extended characters, the printer automatically locks into extended mode; If there are less than 5, use the shift method.
3.3 Graphic Storage and Printing - GM/GG
GM "NAME" size: Download PCX format graphics to memory, size is in bytes. Binary data follows closely behind.
GG x, y, "NAME": Print stored graphics.
GW x, y, width, height, data: Directly write the original bitmap data into the image buffer (without storage).
Operation suggestion: Use DOS COPY/b command or Zebra Firmware Downloader to send graphic files. Do not add extra line breaks after graphic data.
3.4 Tables and Lines
LO x, y, width, height: Draw a black solid rectangle (covering existing content).
LW x, y, width, height: Draw a white rectangle (erase).
LE x, y, width, height: XOR line drawing can be used to invert existing graphics.

Form storage and automation of variables/counters
4.1 Form Concept
EPL2 allows storing complete label designs as "Forms". The form can contain fixed elements, variable fields, and counters, and can be printed by filling in variables each time it is called. This greatly reduces the overhead of duplicate data transmission.
Storage process:
FS "FORMNAME" - Start storing the form.
Define variables (V00,10, N, "Prompt"), counters (C0,5, L,+1, "-"), then add commands such as A/B and reference these variables.
FE - End storage.
Call process:
FR "FORMNAME" - Recall the form from memory.
Command followed by variable values (in defined order).
P1 printing.
4.2 Variables (V command)
Vnn, max, justification, "prompt" defines a variable field, where nn ranges from 00 to 99 and max is the maximum number of characters. Reference through Vnn in text or barcode data.
Expression support: A100200, 0, 4, 1,1, N, "Oil change at" V00+3000 "miles." can perform addition operations (only supports constant and variable addition). If the result exceeds the field length, fill in "X".
4.3 Counter (C command)
Cn, digits, justification, step, "prompt" define automatic up/down counters (only numbers are supported). The step size is+1 to+9 or -1 to -9. Use as an additional variable when the step size is+0.
Protecting consecutive numbers: Adding a minus sign - in front of the prompt can make the prompt only appear once when the form is recalled, and then automatically use the last value and increment it to prevent duplicate printing of the same serial number.
Advanced configuration of 2D barcode
EPL2 supports two-dimensional barcodes such as Aztec, Data Matrix, MaxiCode, PDF417, QR Code (Japanese models), etc., all of which use the b command, but the third parameter is different (A is Aztec, D is Data Matrix, M is MaxiCode, P is PDF417, Q is QR Code).
5.1 PDF417 Automatic Optimization
b x,y,P,max_width,max_height,sN,cM,xW,yH,rR,lC,tT,oR,"DATA"
Set the error correction level (s0-s8, default automatic).
Choose compression mode (c0 automatic, c1 binary).
X module width (dots, 2-9), y module height (4-99, default 4 x width).
Maximum number of rows for r and maximum number of columns for l.
The printer will automatically adjust the module size and number of rows/columns to fit the maximum size limit.
Common error: When the amount of data is too large to fit, error 93 (PDF-417 coded data too large) will be reported. The maximum width/height should be increased or the error correction level should be raised.
5.2 MaxiCode Mode Selection
MaxiCode supports modes 2, 3, 4, and 6. If not specified, the printer automatically selects mode 2 for all digits and mode 3 for alphanumeric characters based on the postal code. The data format for Mode 2/3 is: [)><RS>01<GS>zip<GS>country<GS>class<GS>tracking<GS>..., where<RS>=0x1E,<GS>=0x1D. The printer can automatically parse the AIM standard format.
5.3 Geometric Shape of Data Matrix
B x, y, D, cC, rR, hH, "DATA" where C specifies the number of columns and R specifies the number of rows. If not specified, the printer automatically selects the smallest square. If only columns (such as 18, 26, 32, 36, 48) or rows (8, 12, 16) are specified, rectangular symbols may be generated. When the data length is incompatible with the geometric shape, error 03 (Data Length Error) is reported.
Asian fonts and multilingual support
Asian models (Chinese, Japanese, Korean) support dual byte font 8 (24 × 24 dots @ 203 dpi, 36 × 36 @ 300 dpi) and font 9 (Traditional Chinese/Japanese). Single byte Latin fonts are retained simultaneously.
Use the 'i' command to set the spacing between Asian characters: i3 adds 3 spaces between characters.
Japanese JIS input: Use Shift (1C hex) plus&to enter JIS mode, Shift. to exit.
Code page switching: I8,0001 select American English (Code Page 437). The appendix lists various code pages (437, 737, 850, 852, 855, 857, 860, 861, 862, 863, 865, 866, 869, 1250-1255) and Asian double byte code pages.
Practical reminder: When changing languages, the corresponding firmware version must be used (such as Simplified Chinese, Japanese, and Korean are not compatible with each other). Switching code pages through the I command only affects Latin fonts (1-5) and does not affect double byte fonts 8/9.

SGD Command: Network and Device Configuration
The SGD (Set/Get/Do) command allows for dynamic configuration of printers through serial ports, USB, or Ethernet. They are! Starting with U1, the format is! U1 getvar "attribute" or! U1 setvar "attribute" "value"。
7.1 Common Configuration Items
Example values for attribute description
The current programming language for device. languages is epl_zpl, which supports both EPL and ZPL
Media.printmode Printing modes: tea off ("T"), peel off ("P"), cutter ("C")
Ip.primary_network main network interface wired or wireless
Ip.dhcp.enable DHCP switch on/off
Ip.addr static IP address "192.168.1.100"
WLAN.ESSID wireless network name "Zebra_SIP"
The security types "none", "wep 40 bit", "wpa psk", etc. for wlan.security
Odometer.otal_print_1ength The total print length of the printer (read-only) returns "12345 INCHES, 31356 CENTIMETERS"
Debugging tips: Use! U1 getvar "ip.active_network" to check if the current connection is wired or wireless. If wireless association fails, check wlan.associated and wlan.signal_strength.
7.2 Batch Sending SGD Commands
Can be omitted! U1 prefix, end with END:
text
! U getvar "ip.telnet.enable"
getvar "ip.dhcp.enable"
END
Common faults and diagnostic methods
8.1 Dump Mode
Send the dump command to put the printer into dump mode. All data received afterwards will be printed in hexadecimal and ASCII format for checking the actual byte sequence sent to the printer. Press the feed button to print multiple pages, and then press the feed button to exit the dump mode.
Application scenario: When the label output does not match expectations, first enter dump mode, print a page, and observe whether the data contains unexpected control characters (such as extra line breaks, NUL, etc.), especially baud rate errors or XON/XOFF interference in serial communication.
8.2 Error Report
US Enable Error Report: When an error occurs, the serial port returns NACK (0x15) and an error code.
^Ee immediately returns an error status (4 bytes).
Common error codes: 07 (missing paper or tape), 08 (duplicate name), 09 (name not found), 11 (print head lifted), 84 (AutoSense failed).
Solution suggestion: Automated applications should regularly poll ^ ee or enable US to obtain real-time information on paper shortage status to avoid losing print tasks.
8.3 AutoSense and Media Detection
The xa command executes AutoSense to automatically calibrate sensors and set gap/black label parameters, but does not print configuration labels. If the printer's paper feed is inaccurate after replacing the medium, execute xa once. For continuous paper (without gaps), manually set the Q command and set the second parameter to 0.
8.4 Print Head Life Reminder (G-Series and 2746e)
Enable print head lifespan reminder for oLY, disable for oLN. OL [threshold, freq, "message"] Customize reminder thresholds (in kilometers), reminder frequencies (every N tags), and custom messages. URR prints the current status, while URH prints the print head history. These features help develop preventive maintenance plans.
Performance optimization and memory management
9.1 Dual Buffer Mode
RN disables double buffering, rY re enables it. Double buffering allows for the preparation of the next image while printing the previous label, improving throughput. But when the label width is small and there is not enough memory, the printer will automatically disable it. You can check the configuration through the U command to confirm if it is in a double buffering state.
9.2 Memory Allocation
The M command (for older firmware only) sets the memory size of the form. Modern Flash printers automatically manage memory, but users should still pay attention to:
EI lists soft fonts, EK "*" removes all soft fonts.
GI lists graphics, GK "*" deletes all graphics.
FI lists the forms, FK "*" deletes all forms.
Frequent deletion/storage will consume Flash write life, so try to reuse forms/graphics as much as possible.
9.3 Accelerate Printing Speed
Use S to select the appropriate printing speed (too high may cause barcode deformation).
Use D to adjust the concentration and avoid excessive heating.
Try to reduce the size of the image buffer as much as possible: when q is set small, double buffering is easier to take effect.
Use JB/JC/JF to control the "header top rollback" behavior to avoid unnecessary paper feeding/unloading actions.
Upgrading and replacement precautions
If upgrading from old models (such as Eltron early printers) to Zebra G-Series or 2844, please note:
Command compatibility: EPL2 commands are basically the same, but some options (such as the P option in the O command) may be different. Suggest printing configuration labels (U) on the new printer to confirm the firmware version.
Serial port settings: default 9600, N, 8,1. After using the Y command to make changes, the printer automatically resets and the host must synchronize the changes.
Line mode switching: Some models support EPL1 line mode, which can be switched by pressing the paper button when powered on, or by sending OEPL1 (later switched back to ESC EPL2).
Windows driver: Zebra universal printer driver supports sending EPL commands directly. In the Driver Properties → Printer tab → Tools, you can open the "Direct Command Input" window and test each command one by one.
