Skip to content

Commit e27d672

Browse files
authored
Release 23.4 (#60)
* Add useAntiAlias generate parameter * Remove useless rectangleRegion recognize parameter
1 parent 1b6fc4c commit e27d672

16 files changed

+54
-48
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.3.0
10+
- SDK version: 23.4.0
1111

1212
## Demo applications
1313

7.27 KB
Loading
6.15 KB
Loading

docs/BarcodeApi.md

Lines changed: 10 additions & 10 deletions
Large diffs are not rendered by default.

docs/GeneratorParams.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Name | Type | Description | Notes
4242
**SupplementData** | **string** | Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. | [optional]
4343
**SupplementSpace** | **double?** | Space between main the BarCode and supplement BarCode. | [optional]
4444
**BarWidthReduction** | **double?** | Bars reduction value that is used to compensate ink spread while printing. | [optional]
45+
**UseAntiAlias** | **bool?** | Indicates whether is used anti-aliasing mode to render image. Anti-aliasing mode is applied to barcode and text drawing. | [optional]
4546
**AustralianPost** | [**AustralianPostParams**](AustralianPostParams.md) | AustralianPost params. | [optional]
4647
**Aztec** | [**AztecParams**](AztecParams.md) | Aztec params. | [optional]
4748
**Codabar** | [**CodabarParams**](CodabarParams.md) | Codabar params. | [optional]

docs/ReaderParams.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
88
**ChecksumValidation** | **ChecksumValidation** | Enable checksum validation during recognition for 1D barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies | [optional]
99
**DetectEncoding** | **bool?** | A flag which force engine to detect codetext encoding for Unicode. | [optional]
1010
**Preset** | **PresetType** | Preset allows to configure recognition quality and speed manually. You can quickly set up Preset by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of Preset is NormalQuality. | [optional]
11-
**RectX** | **int?** | Set X for area for recognition. | [optional]
12-
**RectY** | **int?** | Set Y for area for recognition. | [optional]
11+
**RectX** | **int?** | Set X of top left corner of area for recognition. | [optional]
12+
**RectY** | **int?** | Set Y of top left corner of area for recognition. | [optional]
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]

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.3.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.4.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.3.0" />
9+
<PackageReference Include="Aspose.BarCode-Cloud" Version="23.4.0" />
1010
</ItemGroup>
1111

1212
</Project>

src/Api/BarcodeApi.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ public System.IO.Stream GetBarcodeGenerate(GetBarcodeGenerateRequest request)
146146
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "supplementData", request.SupplementData);
147147
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "supplementSpace", request.SupplementSpace);
148148
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "barWidthReduction", request.BarWidthReduction);
149+
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "useAntiAlias", request.UseAntiAlias);
149150
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "format", request.format);
150151

151152

@@ -212,7 +213,6 @@ public BarcodeResponseList GetBarcodeRecognize(GetBarcodeRecognizeRequest reques
212213
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "readTinyBarcodes", request.ReadTinyBarcodes);
213214
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "australianPostEncodingTable", request.AustralianPostEncodingTable);
214215
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "ignoreEndingFillingPatternsForCTable", request.IgnoreEndingFillingPatternsForCTable);
215-
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "rectangleRegion", request.RectangleRegion);
216216
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "storage", request.storage);
217217
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "folder", request.folder);
218218

@@ -284,7 +284,6 @@ public BarcodeResponseList PostBarcodeRecognizeFromUrlOrContent(PostBarcodeRecog
284284
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "readTinyBarcodes", request.ReadTinyBarcodes);
285285
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "australianPostEncodingTable", request.AustralianPostEncodingTable);
286286
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "ignoreEndingFillingPatternsForCTable", request.IgnoreEndingFillingPatternsForCTable);
287-
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "rectangleRegion", request.RectangleRegion);
288287
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "url", request.url);
289288

290289

@@ -406,6 +405,7 @@ public ResultImageInfo PutBarcodeGenerateFile(PutBarcodeGenerateFileRequest requ
406405
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "supplementData", request.SupplementData);
407406
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "supplementSpace", request.SupplementSpace);
408407
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "barWidthReduction", request.BarWidthReduction);
408+
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "useAntiAlias", request.UseAntiAlias);
409409
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "storage", request.storage);
410410
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "folder", request.folder);
411411
resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "format", request.format);

src/Aspose.BarCode.Cloud.Sdk.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Aspose.Barcode for Cloud allows you to control all aspects of the image and barc
1717
<PackageId>Aspose.BarCode-Cloud</PackageId>
1818
<Product>Aspose.BarCode Cloud SDK for .NET</Product>
1919
<PackageIcon>PackageIcon.png</PackageIcon>
20-
<Version>23.3.0</Version>
20+
<Version>23.4.0</Version>
2121
<Authors>Aspose asposecloud</Authors>
22-
<AssemblyVersion>23.3.0.0</AssemblyVersion>
22+
<AssemblyVersion>23.4.0.0</AssemblyVersion>
2323
<PackageReadmeFile>README.md</PackageReadmeFile>
24-
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v23.3.0</PackageReleaseNotes>
24+
<PackageReleaseNotes>https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-dotnet/releases/tag/v23.4.0</PackageReleaseNotes>
2525
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2626
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2727
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)