TSC AUTO ID Technology Co., Ltd. 55 Copyright 2013 All Rights Reserved.
AZTEC
Description
This command defines a AZTEC 2D bar code.
Syntax
AZTEC x,y,rotate,[size,]ecp,]flg,]menu,]multi,]rev,]"content"
AZTEC x,y,rotate,size,ecp,flg,menu,multi,rev,bytes,content
Horizontal start position (in dots)
Vertical start position (in dots)
Rotation
0 : No rotation
90 : Rotate 90 degrees
180 : Rotate 180 degrees
270 : Rotate 270 degrees
Element module size (1 to 20), default is 6
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"
0 : input message is straight bytes
1 : input uses "<Esc>n" for FLG(n), "<Esc><Esc>" for "<Esc>"
Menu symbol (0 : no, 1 : yes), default is 0
Number of symbols (1 to 26), default is 6
Output to be reversed (0 : no, 1 : yes), default is 0
Content of AZTEC 2D bar code
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