Skip to content

Commit 1c08ef5

Browse files
authored
Release 20.12 (#8)
1 parent 2704d88 commit 1c08ef5

23 files changed

Lines changed: 445 additions & 17 deletions

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Aspose.BarCode Cloud SDK for Java
22

33
- API version: 3.0
4-
- SDK version: 20.11.0
4+
- SDK version: 20.12.0
55

66
[Aspose.BarCode for Cloud](https://products.aspose.cloud/barcode/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.
77

@@ -56,7 +56,7 @@ Add this dependency to your project's POM:
5656
<dependency>
5757
<groupId>com.aspose</groupId>
5858
<artifactId>aspose-barcode-cloud</artifactId>
59-
<version>20.11.0</version>
59+
<version>20.12.0</version>
6060
<scope>compile</scope>
6161
</dependency>
6262
```
@@ -71,7 +71,7 @@ mvn clean package
7171

7272
Then manually install the following JARs:
7373

74-
- `target/aspose-barcode-cloud-20.11.0.jar`
74+
- `target/aspose-barcode-cloud-20.12.0.jar`
7575
- `target/lib/*.jar`
7676

7777
## Getting Started
@@ -194,6 +194,7 @@ Class | Method | HTTP request | Description
194194
- [GeneratorParamsList](docs/GeneratorParamsList.md)
195195
- [ITF14BorderType](docs/ITF14BorderType.md)
196196
- [ITFParams](docs/ITFParams.md)
197+
- [MacroCharacter](docs/MacroCharacter.md)
197198
- [MaxiCodeParams](docs/MaxiCodeParams.md)
198199
- [ObjectExist](docs/ObjectExist.md)
199200
- [Padding](docs/Padding.md)
@@ -214,6 +215,7 @@ Class | Method | HTTP request | Description
214215
- [ResultImageInfo](docs/ResultImageInfo.md)
215216
- [StorageExist](docs/StorageExist.md)
216217
- [StorageFile](docs/StorageFile.md)
218+
- [StructuredAppend](docs/StructuredAppend.md)
217219
- [TextAlignment](docs/TextAlignment.md)
218220
- [FileVersion](docs/FileVersion.md)
219221

docs/BarcodeApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Method | HTTP request | Description
1414

1515
## getBarcodeGenerate
1616

17-
> File getBarcodeGenerate(type, text, twoDDisplayText, textLocation, textAlignment, textColor, fontSizeMode, resolution, resolutionX, resolutionY, dimensionX, textSpace, units, sizeMode, barHeight, imageHeight, imageWidth, rotationAngle, backColor, barColor, borderColor, borderWidth, borderDashStyle, borderVisible, enableChecksum, enableEscape, filledBars, alwaysShowChecksum, wideNarrowRatio, validateText, supplementData, supplementSpace, barWidthReduction, format)
17+
> File getBarcodeGenerate(type, text, twoDDisplayText, textLocation, textAlignment, textColor, fontSizeMode, noWrap, resolution, resolutionX, resolutionY, dimensionX, textSpace, units, sizeMode, barHeight, imageHeight, imageWidth, rotationAngle, backColor, barColor, borderColor, borderWidth, borderDashStyle, borderVisible, enableChecksum, enableEscape, filledBars, alwaysShowChecksum, wideNarrowRatio, validateText, supplementData, supplementSpace, barWidthReduction, format)
1818
1919
Generate barcode.
2020

@@ -62,6 +62,7 @@ Name | Type | Description | Notes
6262
**textAlignment** | **String**| Text alignment. | [optional] [enum: Left, Center, Right]
6363
**textColor** | **String**| Specify the displaying CodeText&#39;s Color. Default value: Color.Black. | [optional]
6464
**fontSizeMode** | **String**| 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] [enum: Auto, Manual]
65+
**noWrap** | **Boolean**| Specify word wraps (line breaks) within text. Default value: false. | [optional]
6566
**resolution** | **Double**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
6667
**resolutionX** | **Double**| DEPRECATED: Use &#39;Resolution&#39; instead. | [optional]
6768
**resolutionY** | **Double**| DEPRECATED: Use &#39;Resolution&#39; instead. | [optional]
@@ -307,7 +308,7 @@ Name | Type | Description | Notes
307308

308309
## putBarcodeGenerateFile
309310

310-
> ResultImageInfo putBarcodeGenerateFile(name, type, text, twoDDisplayText, textLocation, textAlignment, textColor, fontSizeMode, resolution, resolutionX, resolutionY, dimensionX, textSpace, units, sizeMode, barHeight, imageHeight, imageWidth, rotationAngle, backColor, barColor, borderColor, borderWidth, borderDashStyle, borderVisible, enableChecksum, enableEscape, filledBars, alwaysShowChecksum, wideNarrowRatio, validateText, supplementData, supplementSpace, barWidthReduction, storage, folder, format)
311+
> ResultImageInfo putBarcodeGenerateFile(name, type, text, twoDDisplayText, textLocation, textAlignment, textColor, fontSizeMode, noWrap, resolution, resolutionX, resolutionY, dimensionX, textSpace, units, sizeMode, barHeight, imageHeight, imageWidth, rotationAngle, backColor, barColor, borderColor, borderWidth, borderDashStyle, borderVisible, enableChecksum, enableEscape, filledBars, alwaysShowChecksum, wideNarrowRatio, validateText, supplementData, supplementSpace, barWidthReduction, storage, folder, format)
311312
312313
Generate barcode and save on server (from query params or from file with json or xml content)
313314

@@ -357,6 +358,7 @@ Name | Type | Description | Notes
357358
**textAlignment** | **String**| Text alignment. | [optional] [enum: Left, Center, Right]
358359
**textColor** | **String**| Specify the displaying CodeText&#39;s Color. Default value: Color.Black. | [optional]
359360
**fontSizeMode** | **String**| 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] [enum: Auto, Manual]
361+
**noWrap** | **Boolean**| Specify word wraps (line breaks) within text. Default value: false. | [optional]
360362
**resolution** | **Double**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
361363
**resolutionX** | **Double**| DEPRECATED: Use &#39;Resolution&#39; instead. | [optional]
362364
**resolutionY** | **Double**| DEPRECATED: Use &#39;Resolution&#39; instead. | [optional]

docs/CaptionParams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**visible** | **Boolean** | Is caption visible. | [optional]
1111
**font** | [**FontParams**](FontParams.md) | Font. | [optional]
1212
**padding** | [**Padding**](Padding.md) | Padding. | [optional]
13+
**noWrap** | **Boolean** | Specify word wraps (line breaks) within text. Default value: false. | [optional]
1314

1415

1516

docs/DataBarParams.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Name | Type | Description | Notes
77
**aspectRatio** | **Double** | Height/Width ratio of 2D BarCode module. Used for DataBar stacked. | [optional]
88
**columns** | **Integer** | Columns count. | [optional]
99
**rows** | **Integer** | Rows count. | [optional]
10+
**is2DCompositeComponent** | **Boolean** | Enables flag of 2D composite component with DataBar barcode | [optional]
11+
**isAllowOnlyGS1Encoding** | **Boolean** | If this flag is set, it allows only GS1 encoding standard for Databar barcode types | [optional]
1012

1113

1214

docs/DataMatrixEncodeMode.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,7 @@
2020

2121
* `ANSIX12` (value: `"ANSIX12"`)
2222

23+
* `EXTENDEDCODETEXT` (value: `"ExtendedCodetext"`)
24+
2325

2426

docs/DataMatrixParams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**dataMatrixEcc** | [**DataMatrixEccType**](DataMatrixEccType.md) | Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. | [optional]
1111
**dataMatrixEncodeMode** | [**DataMatrixEncodeMode**](DataMatrixEncodeMode.md) | Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.Auto. | [optional]
1212
**rows** | **Integer** | Rows count. | [optional]
13+
**macroCharacters** | [**MacroCharacter**](MacroCharacter.md) | 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. | [optional]
1314

1415

1516

docs/GeneratorParams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**textColor** | **String** | Specify the displaying CodeText&#39;s Color. Default value: Color.Black. | [optional]
1313
**font** | [**FontParams**](FontParams.md) | Specify the displaying Text&#39;s font. Default value: Arial 5pt regular. Ignored if FontSizeMode is set to FontSizeMode.Auto. | [optional]
1414
**fontSizeMode** | [**FontMode**](FontMode.md) | 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]
15+
**noWrap** | **Boolean** | Specify word wraps (line breaks) within text. Default value: false. | [optional]
1516
**resolution** | **Double** | Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | [optional]
1617
**resolutionX** | **Double** | DEPRECATED: Use &#39;Resolution&#39; instead. | [optional]
1718
**resolutionY** | **Double** | DEPRECATED: Use &#39;Resolution&#39; instead. | [optional]

docs/MacroCharacter.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
# MacroCharacter
3+
4+
## Enum
5+
6+
7+
* `NONE` (value: `"None"`)
8+
9+
* `MACRO05` (value: `"Macro05"`)
10+
11+
* `MACRO06` (value: `"Macro06"`)
12+
13+
14+

docs/QrParams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**encodeMode** | [**QREncodeMode**](QREncodeMode.md) | QR symbology type of BarCode&#39;s encoding mode. Default value: QREncodeMode.Auto. | [optional]
1212
**errorLevel** | [**QRErrorLevel**](QRErrorLevel.md) | Level of Reed-Solomon error correction for QR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. see QRErrorLevel. | [optional]
1313
**version** | [**QRVersion**](QRVersion.md) | Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.Auto. | [optional]
14+
**structuredAppend** | [**StructuredAppend**](StructuredAppend.md) | QR structured append parameters. | [optional]
1415

1516

1617

docs/StructuredAppend.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# StructuredAppend
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**sequenceIndicator** | **Integer** | The index of the QR structured append mode barcode. Index starts from 0. | [optional]
8+
**totalCount** | **Integer** | Gets or sets the QR structured append mode barcodes quantity. Max value is 16. | [optional]
9+
**parityByte** | **Integer** | Gets or sets the QR structured append mode parity data. | [optional]
10+
11+
12+

0 commit comments

Comments
 (0)