aspose.barcode 24.8.0 → 24.9.0

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.
@@ -4,7 +4,7 @@ const joint_ = require('./Joint');
4
4
  const complexbarcode_ = require("./ComplexBarcode");
5
5
  const generation_ = require("./Generation");
6
6
  const recognition_ = require("./Recognition");
7
- const jar_name_ = "/aspose-barcode-nodejs-24.8.jar";
7
+ const jar_name_ = "/aspose-barcode-nodejs-24.9.jar";
8
8
  const jar_path_ = __dirname + jar_name_;
9
9
  const fs = require("fs");
10
10
 
@@ -688,6 +688,35 @@ class QRExtendedParameters extends joint.BaseJavaClass
688
688
  {
689
689
  return this.getJavaClass().getQRStructuredAppendModeParityDataSync();
690
690
  }
691
+
692
+ /**
693
+ * Version of recognized QR Code. From Version1 to Version40.
694
+ * @return Version of recognized QR Code
695
+ */
696
+ getQRVersion()
697
+ { return this.getJavaClass().getQRVersionSync(); }
698
+
699
+ /**
700
+ * Version of recognized MicroQR Code. From M1 to M4.
701
+ * @return Version of recognized MicroQR Code. From M1 to M4.
702
+ */
703
+ getMicroQRVersion()
704
+ { return this.getJavaClass().getMicroQRVersionSync(); }
705
+
706
+ /**
707
+ * Version of recognized RectMicroQR Code. From R7x43 to R17x139.
708
+ * @return Version of recognized RectMicroQR Code
709
+ */
710
+ getRectMicroQRVersion()
711
+ { return this.getJavaClass().getRectMicroQRVersionSync(); }
712
+
713
+ /**
714
+ * Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH.
715
+ * @return Reed-Solomon error correction level of recognized barcode.
716
+ */
717
+ getQRErrorLevel()
718
+ {return this.getJavaClass().getQRErrorLevelSync(); }
719
+
691
720
  /**
692
721
  * <p>Tests whether all parameters has only default values</p>Value
693
722
  * @returns <b>true</b> if all parameters has only default values; otherwise, {@code <b>false</b>}.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.barcode",
3
- "version": "24.8.0",
3
+ "version": "24.9.0",
4
4
  "description": "barcode generation and recognition component",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"