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
+22-5Lines changed: 22 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,7 +324,7 @@ interface CodablockParams {
324
324
325
325
## Code128Emulation
326
326
327
-
327
+
DEPRECATED. This enum will be removed in future releases Function codewords for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
328
328
329
329
```ts
330
330
enumCode128Emulation {
@@ -712,7 +712,8 @@ enum DecodeBarcodeType {
712
712
HanXin='HanXin',
713
713
GS1HanXin='GS1HanXin',
714
714
GS1Aztec='GS1Aztec',
715
-
GS1CompositeBar='GS1CompositeBar'
715
+
GS1CompositeBar='GS1CompositeBar',
716
+
GS1MicroPdf417='GS1MicroPdf417'
716
717
}
717
718
```
718
719
@@ -910,7 +911,8 @@ enum EncodeBarcodeType {
910
911
GS1DotCode='GS1DotCode',
911
912
HanXin='HanXin',
912
913
GS1HanXin='GS1HanXin',
913
-
GS1Aztec='GS1Aztec'
914
+
GS1Aztec='GS1Aztec',
915
+
GS1MicroPdf417='GS1MicroPdf417'
914
916
}
915
917
```
916
918
@@ -1849,14 +1851,29 @@ interface Pdf417Params {
1849
1851
macroECIEncoding?:ECIEncodings;
1850
1852
1851
1853
/**
1852
-
* Function codeword for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
1854
+
* DEPRECATED: This property is obsolete and will be removed in future releases. See samples of using new parameters on https://releases.aspose.com/barcode/net/release-notes/2023/aspose-barcode-for-net-23-10-release-notes/ Function codeword for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
1853
1855
*/
1854
1856
code128Emulation?:Code128Emulation;
1855
1857
1858
+
/**
1859
+
* Can be used only with MicroPdf417 and encodes Code 128 emulation modes. Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128.
1860
+
*/
1861
+
isCode128Emulation?:boolean;
1862
+
1856
1863
/**
1857
1864
* Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417.
1858
1865
*/
1859
1866
pdf417MacroTerminator?:Pdf417MacroTerminator;
1867
+
1868
+
/**
1869
+
* Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes. With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN-128 modes. With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC.
1870
+
*/
1871
+
isLinked?:boolean;
1872
+
1873
+
/**
1874
+
* Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes. Default value: MacroCharacters.None.
1875
+
*/
1876
+
macroCharacters?:MacroCharacter;
1860
1877
}
1861
1878
```
1862
1879
@@ -2085,7 +2102,7 @@ interface ReaderParams {
2085
2102
stripFNC?:boolean;
2086
2103
2087
2104
/**
2088
-
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 60_000 (1 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
2105
+
* Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout.
0 commit comments