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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Aspose.BarCode Cloud SDK for Node.js
2
2
3
3
+ API version: 3.0
4
-
+ Package version: 20.8.0
4
+
+ Package version: 20.10.0
5
5
6
6
Aspose.BarCode for Cloud is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.
7
7
@@ -58,7 +58,7 @@ All Aspose.BarCode for Cloud SDKs, helper scripts and templates are licensed und
Copy file name to clipboardExpand all lines: docs/index.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ Name | Type | Description | Notes
46
46
**validateText** | **boolean**| Only for 1D barcodes. If codetext is incorrect and value set to true - exception will be thrown. Otherwise codetext will be corrected to match barcode's specification. Exception always will be thrown for: Databar symbology if codetext is incorrect. Exception always will not be thrown for: AustraliaPost, SingaporePost, Code39Extended, Code93Extended, Code16K, Code128 symbology if codetext is incorrect. | [optional]
47
47
**supplementData** | **string**| Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. | [optional]
48
48
**supplementSpace** | **number**| Space between main the BarCode and supplement BarCode. | [optional]
49
+
**barWidthReduction** | **number**| Bars reduction value that is used to compensate ink spread while printing. | [optional]
49
50
**format** | **string**| Result image format. | [optional]
50
51
51
52
#### BarcodeApi.getBarcodeGenerate return type
@@ -96,6 +97,7 @@ Name | Type | Description | Notes
96
97
**scanWindowSizes** | **Array<number>**| Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. | [optional]
97
98
**similarity** | **number**| Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional]
98
99
**skipDiagonalSearch** | **boolean**| Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional]
100
+
**readTinyBarcodes** | **boolean**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
99
101
**australianPostEncodingTable** | 'CTable', 'NTable', 'Other' | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
100
102
**rectangleRegion** | **string**| | [optional]
101
103
**storage** | **string**| The image storage. | [optional]
@@ -148,6 +150,7 @@ Name | Type | Description | Notes
148
150
**scanWindowSizes** | **Array<number>**| Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. | [optional]
149
151
**similarity** | **number**| Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional]
150
152
**skipDiagonalSearch** | **boolean**| Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional]
153
+
**readTinyBarcodes** | **boolean**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
151
154
**australianPostEncodingTable** | 'CTable', 'NTable', 'Other' | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
152
155
**rectangleRegion** | **string**| | [optional]
153
156
**url** | **string**| The image file url. | [optional]
@@ -225,6 +228,7 @@ Name | Type | Description | Notes
225
228
**validateText** | **boolean**| Only for 1D barcodes. If codetext is incorrect and value set to true - exception will be thrown. Otherwise codetext will be corrected to match barcode's specification. Exception always will be thrown for: Databar symbology if codetext is incorrect. Exception always will not be thrown for: AustraliaPost, SingaporePost, Code39Extended, Code93Extended, Code16K, Code128 symbology if codetext is incorrect. | [optional]
226
229
**supplementData** | **string**| Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. | [optional]
227
230
**supplementSpace** | **number**| Space between main the BarCode and supplement BarCode. | [optional]
231
+
**barWidthReduction** | **number**| Bars reduction value that is used to compensate ink spread while printing. | [optional]
Copy file name to clipboardExpand all lines: docs/models.md
+40-14Lines changed: 40 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,24 @@
1
1
# Models
2
2
3
+
## ApiError
4
+
```ts
5
+
interfaceApiError {
6
+
code?:string;
7
+
message?:string;
8
+
description?:string;
9
+
dateTime?:Date;
10
+
innerError?:ApiError;
11
+
}
12
+
```
13
+
14
+
## ApiErrorResponse
15
+
```ts
16
+
interfaceApiErrorResponse {
17
+
requestId?:string;
18
+
error?:ApiError;
19
+
}
20
+
```
21
+
3
22
## AustralianPostParams
4
23
5
24
AustralianPost barcode parameters.
@@ -86,20 +105,6 @@ enum AztecSymbolMode {
86
105
}
87
106
```
88
107
89
-
## BarCodeErrorResponse
90
-
91
-
BarCodeErrorResponse
92
-
93
-
```ts
94
-
interfaceBarCodeErrorResponse {
95
-
96
-
/**
97
-
* Error
98
-
*/
99
-
error?:Error;
100
-
}
101
-
```
102
-
103
108
## BarcodeResponse
104
109
105
110
Represents information about barcode.
@@ -558,6 +563,7 @@ interface DotCodeParams {
558
563
559
564
```ts
560
565
enumECIEncodings {
566
+
NONE='NONE',
561
567
ISO88591='ISO_8859_1',
562
568
ISO88592='ISO_8859_2',
563
569
ISO88593='ISO_8859_3',
@@ -976,6 +982,11 @@ interface GeneratorParams {
976
982
*/
977
983
supplementSpace?:number;
978
984
985
+
/**
986
+
* Bars reduction value that is used to compensate ink spread while printing.
987
+
*/
988
+
barWidthReduction?:number;
989
+
979
990
/**
980
991
* AustralianPost params.
981
992
*/
@@ -1331,6 +1342,16 @@ interface Pdf417Params {
1331
1342
* Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
1332
1343
*/
1333
1344
truncate?:boolean;
1345
+
1346
+
/**
1347
+
* Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings.
1348
+
*/
1349
+
pdf417ECIEncoding?:ECIEncodings;
1350
+
1351
+
/**
1352
+
* Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization
1353
+
*/
1354
+
isReaderInitialization?:boolean;
1334
1355
}
1335
1356
```
1336
1357
@@ -1653,6 +1674,11 @@ interface ReaderParams {
1653
1674
*/
1654
1675
skipDiagonalSearch?:boolean;
1655
1676
1677
+
/**
1678
+
* Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False.
1679
+
*/
1680
+
readTinyBarcodes?:boolean;
1681
+
1656
1682
/**
1657
1683
* Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other.
0 commit comments