Skip to content

Commit 780fdf9

Browse files
authored
Update version to 23.2.0 (#56)
* Update version to 23.2.0 * Cloud Release 23.2
1 parent 291451d commit 780fdf9

File tree

13 files changed

+25
-122
lines changed

13 files changed

+25
-122
lines changed

.github/workflows/check-urls.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Nuget](https://img.shields.io/nuget/v/Aspose.BarCode-Cloud)](https://www.nuget.org/packages/Aspose.BarCode-Cloud/)
88

99
- API version: 3.0
10-
- SDK version: 23.1.0
10+
- SDK version: 23.2.0
1111

1212
## Demo applications
1313

@@ -219,7 +219,7 @@ Class | Method | HTTP request | Description
219219
----- | ------ | ------------ | -----------
220220
*BarcodeApi* | [**GetBarcodeGenerate**](docs/BarcodeApi.md#getbarcodegenerate) | **GET** /barcode/generate | Generate barcode.
221221
*BarcodeApi* | [**GetBarcodeRecognize**](docs/BarcodeApi.md#getbarcoderecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
222-
*BarcodeApi* | [**PostBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
222+
*BarcodeApi* | [**PostBarcodeRecognizeFromUrlOrContent**](docs/BarcodeApi.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
223223
*BarcodeApi* | [**PostGenerateMultiple**](docs/BarcodeApi.md#postgeneratemultiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
224224
*BarcodeApi* | [**PutBarcodeGenerateFile**](docs/BarcodeApi.md#putbarcodegeneratefile) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content)
225225
*BarcodeApi* | [**PutBarcodeRecognizeFromBody**](docs/BarcodeApi.md#putbarcoderecognizefrombody) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.

docs/BarcodeApi.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Method | HTTP request | Description
66
------ | ------------ | -----------
77
[**GetBarcodeGenerate**](BarcodeApi.md#getbarcodegenerate) | **GET** /barcode/generate | Generate barcode.
88
[**GetBarcodeRecognize**](BarcodeApi.md#getbarcoderecognize) | **GET** /barcode/{name}/recognize | Recognize barcode from a file on server.
9-
[**PostBarcodeRecognizeFromUrlOrContent**](BarcodeApi.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
9+
[**PostBarcodeRecognizeFromUrlOrContent**](BarcodeApi.md#postbarcoderecognizefromurlorcontent) | **POST** /barcode/recognize | Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
1010
[**PostGenerateMultiple**](BarcodeApi.md#postgeneratemultiple) | **POST** /barcode/generateMultiple | Generate multiple barcodes and return in response stream
1111
[**PutBarcodeGenerateFile**](BarcodeApi.md#putbarcodegeneratefile) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content)
1212
[**PutBarcodeRecognizeFromBody**](BarcodeApi.md#putbarcoderecognizefrombody) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body.
@@ -93,7 +93,7 @@ Name | Type | Description | Notes
9393
**rectWidth** | **int?**| Set Width of area for recognition. | [optional]
9494
**rectHeight** | **int?**| Set Height of area for recognition. | [optional]
9595
**stripFNC** | **bool?**| Value indicating whether FNC symbol strip must be done. | [optional]
96-
**timeout** | **int?**| Timeout of recognition process. | [optional]
96+
**timeout** | **int?**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
9797
**medianSmoothingWindowSize** | **int?**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
9898
**allowMedianSmoothing** | **bool?**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
9999
**allowComplexBackground** | **bool?**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -117,7 +117,7 @@ Name | Type | Description | Notes
117117
**skipDiagonalSearch** | **bool?**| 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]
118118
**readTinyBarcodes** | **bool?**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
119119
**australianPostEncodingTable** | **string**| Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
120-
**ignoreEndingFillingPatternsForCTable** | **bool?**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce \"333\" of filling paterns is decoded as letter \"z\". | [optional]
120+
**ignoreEndingFillingPatternsForCTable** | **bool?**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \"333\" of filling patterns is decoded as letter \"z\". | [optional]
121121
**rectangleRegion** | **string**| | [optional]
122122
**storage** | **string**| The image storage. | [optional]
123123
**folder** | **string**| The image folder. | [optional]
@@ -138,7 +138,7 @@ Name | Type | Description | Notes
138138
BarcodeResponseList PostBarcodeRecognizeFromUrlOrContent (string type = null, string checksumValidation = null, bool? detectEncoding = null, string preset = null, int? rectX = null, int? rectY = null, int? rectWidth = null, int? rectHeight = null, bool? stripFNC = null, int? timeout = null, int? medianSmoothingWindowSize = null, bool? allowMedianSmoothing = null, bool? allowComplexBackground = null, bool? allowDatamatrixIndustrialBarcodes = null, bool? allowDecreasedImage = null, bool? allowDetectScanGap = null, bool? allowIncorrectBarcodes = null, bool? allowInvertImage = null, bool? allowMicroWhiteSpotsRemoving = null, bool? allowOneDFastBarcodesDetector = null, bool? allowOneDWipedBarsRestoration = null, bool? allowQRMicroQrRestoration = null, bool? allowRegularImage = null, bool? allowSaltAndPepperFiltering = null, bool? allowWhiteSpotsRemoving = null, bool? checkMore1DVariants = null, bool? fastScanOnly = null, double? regionLikelihoodThresholdPercent = null, List<int?> scanWindowSizes = null, double? similarity = null, bool? skipDiagonalSearch = null, bool? readTinyBarcodes = null, string australianPostEncodingTable = null, bool? ignoreEndingFillingPatternsForCTable = null, string rectangleRegion = null, string url = null, System.IO.Stream image = null)
139139
```
140140

141-
Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
141+
Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \"application/octet-stream\". An image can also be passed as a form field.
142142

143143
### Parameters
144144

@@ -153,7 +153,7 @@ Name | Type | Description | Notes
153153
**rectWidth** | **int?**| Set Width of area for recognition. | [optional]
154154
**rectHeight** | **int?**| Set Height of area for recognition. | [optional]
155155
**stripFNC** | **bool?**| Value indicating whether FNC symbol strip must be done. | [optional]
156-
**timeout** | **int?**| Timeout of recognition process. | [optional]
156+
**timeout** | **int?**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
157157
**medianSmoothingWindowSize** | **int?**| Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
158158
**allowMedianSmoothing** | **bool?**| Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
159159
**allowComplexBackground** | **bool?**| Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -177,7 +177,7 @@ Name | Type | Description | Notes
177177
**skipDiagonalSearch** | **bool?**| 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]
178178
**readTinyBarcodes** | **bool?**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
179179
**australianPostEncodingTable** | **string**| Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
180-
**ignoreEndingFillingPatternsForCTable** | **bool?**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce \&quot;333\&quot; of filling paterns is decoded as letter \&quot;z\&quot;. | [optional]
180+
**ignoreEndingFillingPatternsForCTable** | **bool?**| The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \&quot;333\&quot; of filling patterns is decoded as letter \&quot;z\&quot;. | [optional]
181181
**rectangleRegion** | **string**| | [optional]
182182
**url** | **string**| The image file url. | [optional]
183183
**image** | **System.IO.Stream**| Image data | [optional]

docs/ReaderParams.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
1313
**RectWidth** | **int?** | Set Width of area for recognition. | [optional]
1414
**RectHeight** | **int?** | Set Height of area for recognition. | [optional]
1515
**StripFNC** | **bool?** | Value indicating whether FNC symbol strip must be done. | [optional]
16-
**Timeout** | **int?** | Timeout of recognition process. | [optional]
16+
**Timeout** | **int?** | Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional]
1717
**MedianSmoothingWindowSize** | **int?** | Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set. | [optional]
1818
**AllowMedianSmoothing** | **bool?** | Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. | [optional]
1919
**AllowComplexBackground** | **bool?** | Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode. | [optional]
@@ -37,5 +37,5 @@ Name | Type | Description | Notes
3737
**SkipDiagonalSearch** | **bool?** | 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]
3838
**ReadTinyBarcodes** | **bool?** | Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional]
3939
**AustralianPostEncodingTable** | **CustomerInformationInterpretingType** | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional]
40-
**IgnoreEndingFillingPatternsForCTable** | **bool?** | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce \&quot;333\&quot; of filling paterns is decoded as letter \&quot;z\&quot;. | [optional]
40+
**IgnoreEndingFillingPatternsForCTable** | **bool?** | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequence \&quot;333\&quot; of filling patterns is decoded as letter \&quot;z\&quot;. | [optional]
4141

examples/GenerateQR/GenerateQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.1.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.2.0" />
1010
</ItemGroup>
1111

1212
</Project>

examples/ReadQR/ReadQR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.1.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.2.0" />
1010
</ItemGroup>
1111

1212
</Project>

scripts/check-urls-in-file.py

Lines changed: 0 additions & 61 deletions
This file was deleted.

scripts/check_all_urls.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/Api/BarcodeApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public BarcodeResponseList GetBarcodeRecognize(GetBarcodeRecognizeRequest reques
235235
}
236236

237237
/// <summary>
238-
/// Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image or encoded with base64.
238+
/// Recognize barcode from an url or from request body. Request body can contain raw data bytes of the image with content-type \&quot;application/octet-stream\&quot;. An image can also be passed as a form field.
239239
/// </summary>
240240
/// <param name="request">Request. <see cref="PostBarcodeRecognizeFromUrlOrContentRequest" /></param>
241241
/// <returns>

src/Aspose.BarCode.Cloud.Sdk.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
1818
<PackageId>Aspose.BarCode-Cloud</PackageId>
1919
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
2020
<PackageIcon>PackageIcon.png</PackageIcon>
21-
<Version>23.1.0</Version>
21+
<Version>23.2.0</Version>
2222
<Authors>asposecloud</Authors>
23-
<AssemblyVersion>23.1.0.0</AssemblyVersion>
23+
<AssemblyVersion>23.2.0.0</AssemblyVersion>
2424
<PackageReadmeFile>README.md</PackageReadmeFile>
2525
</PropertyGroup>
2626

0 commit comments

Comments
 (0)