aspose.barcode 21.9.5 → 21.10.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ const recognition_ = require("./Recognition");
7
7
 
8
8
  function pushJar()
9
9
  {
10
- java.classpath.push(__dirname + "/aspose-barcode-nodejs-21.9.jar");
10
+ java.classpath.push(__dirname + "/aspose-barcode-nodejs-21.10.jar");
11
11
  }
12
12
  pushJar();
13
13
 
@@ -531,7 +531,7 @@ QrBillStandardVersion =
531
531
  * Version 2.0
532
532
  *
533
533
  */
534
- V2_0: "0"
534
+ V2_0: 0
535
535
  };
536
536
 
537
537
  /**
@@ -1277,5 +1277,6 @@ module.exports = {
1277
1277
  AddressType,
1278
1278
  SwissQRBill,
1279
1279
  Mailmark2DCodetext,
1280
- Mailmark2DType
1280
+ Mailmark2DType,
1281
+ QrBillStandardVersion
1281
1282
  };
package/lib/Generation.js CHANGED
@@ -902,7 +902,7 @@ ChecksumValidation =
902
902
  /**
903
903
  * If checksum is required by the specification - it will be validated.
904
904
  */
905
- _default: 0,
905
+ DEFAULT: 0,
906
906
 
907
907
  /**
908
908
  * Always validate checksum if possible.
@@ -2362,6 +2362,24 @@ class QualitySettings extends joint.BaseJavaClass
2362
2362
  this.getJavaClass().setAllowMicroWhiteSpotsRemovingSync(value);
2363
2363
  }
2364
2364
 
2365
+ /**
2366
+ * Allows engine for 1D barcodes to quickly recognize middle slice of an image and return result without using any time-consuming algorithms.
2367
+ * @return Allows engine for 1D barcodes to quickly recognize high quality barcodes.
2368
+ */
2369
+ getFastScanOnly()
2370
+ {
2371
+ return this.getJavaClass().getFastScanOnlySync();
2372
+ }
2373
+
2374
+ /**
2375
+ * Allows engine for 1D barcodes to quickly recognize middle slice of an image and return result without using any time-consuming algorithms.
2376
+ * @param value Allows engine for 1D barcodes to quickly recognize high quality barcodes.
2377
+ */
2378
+ setFastScanOnly(value)
2379
+ {
2380
+ this.getJavaClass().setFastScanOnlySync(value);
2381
+ }
2382
+
2365
2383
  /**
2366
2384
  * Allows engine to recognize barcodes with salt and paper noise type. Mode can remove small noise with white and black dots.
2367
2385
  * Value:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.barcode",
3
- "version": "21.9.5",
3
+ "version": "21.10.5",
4
4
  "description": "barcode generation and recognition component",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"