You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/models.md
+41-6Lines changed: 41 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,18 @@ enum AvailableGraphicsUnit {
63
63
}
64
64
```
65
65
66
+
## AztecEncodeMode
67
+
68
+
69
+
70
+
```ts
71
+
enumAztecEncodeMode {
72
+
Auto='Auto',
73
+
Bytes='Bytes',
74
+
ExtendedCodetext='ExtendedCodetext'
75
+
}
76
+
```
77
+
66
78
## AztecParams
67
79
68
80
Aztec parameters.
@@ -86,9 +98,29 @@ interface AztecParams {
86
98
symbolMode?:AztecSymbolMode;
87
99
88
100
/**
89
-
* Sets the encoding of codetext.
101
+
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
90
102
*/
91
103
textEncoding?:string;
104
+
105
+
/**
106
+
* Encoding mode for Aztec barcodes. Default value: Auto
107
+
*/
108
+
encodeMode?:AztecEncodeMode;
109
+
110
+
/**
111
+
* Identifies ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1.
112
+
*/
113
+
eCIEncoding?:ECIEncodings;
114
+
115
+
/**
116
+
* Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization.
117
+
*/
118
+
isReaderInitialization?:boolean;
119
+
120
+
/**
121
+
* Gets or sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto).
122
+
*/
123
+
layersCount?:number;
92
124
}
93
125
```
94
126
@@ -476,7 +508,7 @@ interface DataMatrixParams {
476
508
aspectRatio?:number;
477
509
478
510
/**
479
-
* Encoding of codetext.
511
+
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
480
512
*/
481
513
textEncoding?:string;
482
514
@@ -678,7 +710,9 @@ enum DecodeBarcodeType {
678
710
HIBCDataMatrixPAS='HIBCDataMatrixPAS',
679
711
HIBCQRPAS='HIBCQRPAS',
680
712
HanXin='HanXin',
681
-
GS1HanXin='GS1HanXin'
713
+
GS1HanXin='GS1HanXin',
714
+
GS1Aztec='GS1Aztec',
715
+
GS1CompositeBar='GS1CompositeBar'
682
716
}
683
717
```
684
718
@@ -875,7 +909,8 @@ enum EncodeBarcodeType {
875
909
Mailmark='Mailmark',
876
910
GS1DotCode='GS1DotCode',
877
911
HanXin='HanXin',
878
-
GS1HanXin='GS1HanXin'
912
+
GS1HanXin='GS1HanXin',
913
+
GS1Aztec='GS1Aztec'
879
914
}
880
915
```
881
916
@@ -1724,7 +1759,7 @@ interface Pdf417Params {
1724
1759
aspectRatio?:number;
1725
1760
1726
1761
/**
1727
-
* Encoding of codetext.
1762
+
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
1728
1763
*/
1729
1764
textEncoding?:string;
1730
1765
@@ -1961,7 +1996,7 @@ interface QrParams {
1961
1996
aspectRatio?:number;
1962
1997
1963
1998
/**
1964
-
* Encoding of codetext.
1999
+
* DEPRECATED: This property is obsolete and will be removed in future releases. Unicode symbols detection and encoding will be processed in Auto mode with Extended Channel Interpretation charset designator. Using of own encodings requires manual CodeText encoding into byte[] array. Sets the encoding of codetext.
0 commit comments