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.11.1
4
+
+ Package version: 20.12.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.
**fontSizeMode** | 'Auto', 'Manual' | Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation. Default value: FontSizeMode.Auto. | [optional]
24
+
**noWrap** | **boolean**| Specify word wraps (line breaks) within text. Default value: false. | [optional]
24
25
**resolution** | **number**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
25
26
**resolutionX** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
26
27
**resolutionY** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
@@ -203,6 +204,7 @@ Name | Type | Description | Notes
203
204
**textAlignment** | 'Left', 'Center', 'Right' | Text alignment. | [optional]
**fontSizeMode** | 'Auto', 'Manual' | Specify FontSizeMode. If FontSizeMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontSizeMode.Auto especially in AutoSizeMode.Nearest or AutoSizeMode.Interpolation. Default value: FontSizeMode.Auto. | [optional]
207
+
**noWrap** | **boolean**| Specify word wraps (line breaks) within text. Default value: false. | [optional]
206
208
**resolution** | **number**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
207
209
**resolutionX** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
208
210
**resolutionY** | **number**| DEPRECATED: Use 'Resolution' instead. | [optional]
Copy file name to clipboardExpand all lines: docs/models.md
+68-1Lines changed: 68 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,6 +198,11 @@ interface CaptionParams {
198
198
* Padding.
199
199
*/
200
200
padding?:Padding;
201
+
202
+
/**
203
+
* Specify word wraps (line breaks) within text. Default value: false.
204
+
*/
205
+
noWrap?:boolean;
201
206
}
202
207
```
203
208
@@ -368,6 +373,16 @@ interface DataBarParams {
368
373
* Rows count.
369
374
*/
370
375
rows?:number;
376
+
377
+
/**
378
+
* Enables flag of 2D composite component with DataBar barcode
379
+
*/
380
+
is2DCompositeComponent?:boolean;
381
+
382
+
/**
383
+
* If this flag is set, it allows only GS1 encoding standard for Databar barcode types
384
+
*/
385
+
isAllowOnlyGS1Encoding?:boolean;
371
386
}
372
387
```
373
388
@@ -400,7 +415,8 @@ enum DataMatrixEncodeMode {
400
415
C40='C40',
401
416
Text='Text',
402
417
EDIFACT='EDIFACT',
403
-
ANSIX12='ANSIX12'
418
+
ANSIX12='ANSIX12',
419
+
ExtendedCodetext='ExtendedCodetext'
404
420
}
405
421
```
406
422
@@ -440,6 +456,11 @@ interface DataMatrixParams {
440
456
* Rows count.
441
457
*/
442
458
rows?:number;
459
+
460
+
/**
461
+
* Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None.
462
+
*/
463
+
macroCharacters?:MacroCharacter;
443
464
}
444
465
```
445
466
@@ -842,6 +863,11 @@ interface GeneratorParams {
842
863
*/
843
864
fontSizeMode?:FontMode;
844
865
866
+
/**
867
+
* Specify word wraps (line breaks) within text. Default value: false.
868
+
*/
869
+
noWrap?:boolean;
870
+
845
871
/**
846
872
* Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi.
847
873
*/
@@ -1126,6 +1152,18 @@ interface ITFParams {
1126
1152
}
1127
1153
```
1128
1154
1155
+
## MacroCharacter
1156
+
1157
+
1158
+
1159
+
```ts
1160
+
enumMacroCharacter {
1161
+
None='None',
1162
+
Macro05='Macro05',
1163
+
Macro06='Macro06'
1164
+
}
1165
+
```
1166
+
1129
1167
## MaxiCodeParams
1130
1168
1131
1169
MaxiCode parameters.
@@ -1519,6 +1557,11 @@ interface QrParams {
1519
1557
* Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.Auto.
1520
1558
*/
1521
1559
version?:QRVersion;
1560
+
1561
+
/**
1562
+
* QR structured append parameters.
1563
+
*/
1564
+
structuredAppend?:StructuredAppend;
1522
1565
}
1523
1566
```
1524
1567
@@ -1777,6 +1820,30 @@ interface StorageFile {
1777
1820
}
1778
1821
```
1779
1822
1823
+
## StructuredAppend
1824
+
1825
+
QR structured append parameters.
1826
+
1827
+
```ts
1828
+
interfaceStructuredAppend {
1829
+
1830
+
/**
1831
+
* The index of the QR structured append mode barcode. Index starts from 0.
1832
+
*/
1833
+
sequenceIndicator?:number;
1834
+
1835
+
/**
1836
+
* Gets or sets the QR structured append mode barcodes quantity. Max value is 16.
1837
+
*/
1838
+
totalCount?:number;
1839
+
1840
+
/**
1841
+
* Gets or sets the QR structured append mode parity data.
0 commit comments