FBPL Command Reference

Table Of Contents
65
6.13 AZTEC
Description
Define an AZTEC 2D barcode.
Syntax
AZTEC x,y,rotate,[size,]ecp,]flg,]menu,]multi,]rev,] "content"
AZTEC x,y,rotate,size,ecp,flg,menu,multi,rev,bytes,content
Parameter
Description
x
Starting point of the barcode in the X direction (dots)
y
Starting point of the barcode in the Y direction (dots)
rotate
0 : No rotation
90 : Rotated 90 degrees
180 : Rotated 180 degrees
270 : Rotated 270 degrees
size
Element module size (1 to 20), default is 6
ecp
Error control (& symbol size/type) parameter
0 : default error correction level
1 to 99 : minimum error correction percentage
101 to 104 : 1 to 4-layer Compact symbol
201 to 232 : 1 to 32-layer Full-Range symbol
300 : a simple Aztec “Rune”
flg
0 : input message is straight bytes
1 : input uses "<Esc>n" for FLG(n), "<Esc><Esc>" for "<Esc>"
menu
Menu symbol (0 : no, 1 : yes), default is 0
multi
Number of symbols (1 to 26), default is 6
rev
Output to be reversed (0 : no, 1 : yes), default is 0
bytes
Length of content
content
Barcode content
Note:
If parameter bytes is used, double quotes (") are unnecessary.
Example
Sample Code
SIZE 4,2
GAP 0,0
CLS
AZTEC 10,10,0,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
AZTEC 210,10,0,4,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
AZTEC 410,10,0,4,1,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
AZTEC 610,10,0,4,1,0,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
AZTEC
10,310,0,4,1,0,0,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
AZTEC
210,310,0,4,1,0,0,1,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
AZTEC
410,310,0,4,1,0,0,1,1,"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
"
AZTEC 610,310,0,4,1,0,0,1,1,10,1234567890
PRINT 1
Result