Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Freleases.aspose.cloud%2Fjava%2Frepo%2Fcom%2Faspose%2Faspose-barcode-cloud%2Fmaven-metadata.xml)](https://releases.aspose.cloud/java/repo/com/aspose/aspose-barcode-cloud/)

- API version: 4.0
- SDK version: 25.4.0
- SDK version: 25.5.0

## SDK and API Version Compatibility:

Expand Down Expand Up @@ -73,7 +73,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-barcode-cloud</artifactId>
<version>25.4.0</version>
<version>25.5.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -88,7 +88,7 @@ mvn clean package

Then manually install the following JARs:

- `target/aspose-barcode-cloud-25.4.0.jar`
- `target/aspose-barcode-cloud-25.5.0.jar`
- `target/lib/*.jar`

## Getting Started
Expand Down
12 changes: 6 additions & 6 deletions docs/BarcodeImageParams.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Barcode image optional parameters
|------------ | ------------- | ------------- | -------------|
|**imageFormat** | **BarcodeImageFormat** | | [optional] |
|**textLocation** | **CodeLocation** | | [optional] |
|**foregroundColor** | **String** | Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] |
|**backgroundColor** | **String** | Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] |
|**foregroundColor** | **String** | Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] |
|**backgroundColor** | **String** | Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] |
|**units** | **GraphicsUnit** | | [optional] |
|**resolution** | **Float** | Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional] |
|**imageHeight** | **Float** | Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
|**imageWidth** | **Float** | Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
|**rotationAngle** | **Integer** | BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional] |
|**resolution** | **Float** | Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional] |
|**imageHeight** | **Float** | Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
|**imageWidth** | **Float** | Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional] |
|**rotationAngle** | **Integer** | BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional] |



30 changes: 15 additions & 15 deletions docs/GenerateApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ Name | Type | Description | Notes
---- | ---- | ------------ | -----
**barcodeType** | [**EncodeBarcodeType**](.md)| Type of barcode to generate. | [enum: QR, AustraliaPost, AustralianPosteParcel, Aztec, Codabar, CodablockF, Code11, Code128, Code16K, Code32, Code39, Code39FullASCII, Code93, DataLogic2of5, DataMatrix, DatabarExpanded, DatabarExpandedStacked, DatabarLimited, DatabarOmniDirectional, DatabarStacked, DatabarStackedOmniDirectional, DatabarTruncated, DeutschePostIdentcode, DeutschePostLeitcode, DotCode, DutchKIX, EAN13, EAN14, EAN8, GS1Aztec, GS1CodablockF, GS1Code128, GS1DataMatrix, GS1DotCode, GS1HanXin, GS1MicroPdf417, GS1QR, HanXin, IATA2of5, ISBN, ISMN, ISSN, ITF14, ITF6, Interleaved2of5, ItalianPost25, MSI, MacroPdf417, Mailmark, Matrix2of5, MaxiCode, MicroPdf417, MicroQR, OPC, OneCode, PZN, PatchCode, Pdf417, Pharmacode, Planet, Postnet, RM4SCC, RectMicroQR, SCC14, SSCC18, SingaporePost, Standard2of5, SwissPostParcel, UPCA, UPCE, UpcaGs1Code128Coupon, UpcaGs1DatabarCoupon, VIN]
**data** | **String**| String represents data to encode |
**dataType** | [**EncodeDataType**](.md)| Type of data to encode. Default value: StringData. | [optional] [enum: StringData, Base64Bytes, HexBytes]
**imageFormat** | [**BarcodeImageFormat**](.md)| Barcode output image format. Default value: png | [optional] [enum: Png, Jpeg, Svg, Tiff, Gif]
**textLocation** | [**CodeLocation**](.md)| Specify the displaying Text Location, set to CodeLocation.None to hide CodeText. Default value: Depends on BarcodeType. CodeLocation.Below for 1D Barcodes. CodeLocation.None for 2D Barcodes. | [optional] [enum: Below, Above, None]
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
**dataType** | [**EncodeDataType**](.md)| Type of data to encode. Default value: StringData. | [optional] [enum: StringData, Base64Bytes, HexBytes]
**imageFormat** | [**BarcodeImageFormat**](.md)| Barcode output image format. Default value: png | [optional] [enum: Png, Jpeg, Svg, Tiff, Gif]
**textLocation** | [**CodeLocation**](.md)| Specify the displaying Text Location, set to CodeLocation.None to hide CodeText. Default value: Depends on BarcodeType. CodeLocation.Below for 1D Barcodes. CodeLocation.None for 2D Barcodes. | [optional] [enum: Below, Above, None]
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
**units** | [**GraphicsUnit**](.md)| Common Units for all measuring in query. Default units: pixel. | [optional] [enum: Pixel, Point, Inch, Millimeter]
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]

### generate return type

Expand Down Expand Up @@ -69,13 +69,13 @@ Name | Type | Description | Notes
**dataType** | [**EncodeDataType**](EncodeDataType.md)| | [optional] [enum: StringData, Base64Bytes, HexBytes]
**imageFormat** | [**BarcodeImageFormat**](BarcodeImageFormat.md)| | [optional] [enum: Png, Jpeg, Svg, Tiff, Gif]
**textLocation** | [**CodeLocation**](CodeLocation.md)| | [optional] [enum: Below, Above, None]
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
**foregroundColor** | **String**| Specify the displaying bars and content Color. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: Black. | [optional] [default to Black]
**backgroundColor** | **String**| Background color of the barcode image. Value: Color name from https://reference.aspose.com/drawing/net/system.drawing/color/ or ARGB value started with #. For example: AliceBlue or #FF000000 Default value: White. | [optional] [default to White]
**units** | [**GraphicsUnit**](GraphicsUnit.md)| | [optional] [enum: Pixel, Point, Inch, Millimeter]
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]
**resolution** | **Float**| Resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. Decimal separator is dot. | [optional]
**imageHeight** | **Float**| Height of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**imageWidth** | **Float**| Width of the barcode image in given units. Default units: pixel. Decimal separator is dot. | [optional]
**rotationAngle** | **Integer**| BarCode image rotation angle, measured in degree, e.g. RotationAngle &#x3D; 0 or RotationAngle &#x3D; 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | [optional]

### generateMultipart return type

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>aspose-barcode-cloud</artifactId>
<packaging>jar</packaging>
<name>aspose-barcode-cloud</name>
<version>25.4.0</version>
<version>25.5.0</version>
<url>https://www.aspose.cloud</url>
<description>Aspose.BarCode Cloud SDK for Java</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion snippets/dependency.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-barcode-cloud</artifactId>
<version>25.4.0</version>
<version>25.5.0</version>
</dependency>
<!-- Add other dependencies here -->
</dependencies>
4 changes: 2 additions & 2 deletions src/main/java/com/aspose/barcode/cloud/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/** ApiClient. */
public class ApiClient {
public final String apiVersion = "v4.0";
public final String clientVersion = "25.4.0";
public final String clientVersion = "25.5.0";

private String baseUrl = "https://api.aspose.cloud";
private String tokenUrl = "https://id.aspose.cloud/connect/token";
Expand Down Expand Up @@ -88,7 +88,7 @@ protected ApiClient(long readTimeoutMillis) {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenApi-Generator/25.4.0/java");
setUserAgent("OpenApi-Generator/25.5.0/java");

addDefaultHeader("x-aspose-client", "java sdk");
addDefaultHeader("x-aspose-client-version", clientVersion);
Expand Down