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
+1-1Lines changed: 1 addition & 1 deletion
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.6.0
4
+
+ Package version: 20.8.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.
Copy file name to clipboardExpand all lines: docs/models.md
+46-6Lines changed: 46 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -393,7 +393,9 @@ enum DataMatrixEncodeMode {
393
393
Full='Full',
394
394
Custom='Custom',
395
395
C40='C40',
396
-
Text='Text'
396
+
Text='Text',
397
+
EDIFACT='EDIFACT',
398
+
ANSIX12='ANSIX12'
397
399
}
398
400
```
399
401
@@ -960,7 +962,7 @@ interface GeneratorParams {
960
962
wideNarrowRatio?:number;
961
963
962
964
/**
963
-
* 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, SingapurePost, Code39Extended, Code93Extended, Code16K, Code128 symbology if codetext is incorrect.
965
+
* 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.
* Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode.
1223
+
*/
1224
+
extraBarcodeText?:string;
1225
+
1226
+
/**
1227
+
* PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly
1228
+
*/
1229
+
patchFormat?:PatchFormat;
1230
+
}
1231
+
```
1232
+
1233
+
## PatchFormat
1234
+
1235
+
1236
+
1237
+
```ts
1238
+
enumPatchFormat {
1239
+
PatchOnly='PatchOnly',
1240
+
A4='A4',
1241
+
A4LANDSCAPE='A4_LANDSCAPE',
1242
+
USLetter='US_Letter',
1243
+
USLetterLANDSCAPE='US_Letter_LANDSCAPE'
1244
+
}
1245
+
```
1246
+
1207
1247
## Pdf417CompactionMode
1208
1248
1209
1249
@@ -1594,22 +1634,22 @@ interface ReaderParams {
1594
1634
allowWhiteSpotsRemoving?:boolean;
1595
1635
1596
1636
/**
1597
-
* Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time.
1637
+
* Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time.
1598
1638
*/
1599
1639
regionLikelihoodThresholdPercent?:number;
1600
1640
1601
1641
/**
1602
-
* 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.
1642
+
* 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.
1603
1643
*/
1604
1644
scanWindowSizes?:Array<number>;
1605
1645
1606
1646
/**
1607
-
* 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]
1647
+
* 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]
1608
1648
*/
1609
1649
similarity?:number;
1610
1650
1611
1651
/**
1612
-
* 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.
1652
+
* 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.
0 commit comments