aspose-barcode-cloud-node 23.7.0 → 23.8.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.
package/dist/models.d.ts CHANGED
@@ -486,6 +486,10 @@ export declare class DataMatrixParams {
486
486
  * Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None.
487
487
  */
488
488
  'macroCharacters'?: MacroCharacter;
489
+ /**
490
+ * Sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto.
491
+ */
492
+ 'version'?: DataMatrixVersion;
489
493
  static attributeTypeMap: Array<{
490
494
  name: string;
491
495
  baseName: string;
@@ -497,6 +501,82 @@ export declare class DataMatrixParams {
497
501
  type: string;
498
502
  }[];
499
503
  }
504
+ /**
505
+ *
506
+ */
507
+ export declare enum DataMatrixVersion {
508
+ Auto = "Auto",
509
+ RowsColumns = "RowsColumns",
510
+ ECC0009x9 = "ECC000_9x9",
511
+ ECC00005011x11 = "ECC000_050_11x11",
512
+ ECC00010013x13 = "ECC000_100_13x13",
513
+ ECC00010015x15 = "ECC000_100_15x15",
514
+ ECC00014017x17 = "ECC000_140_17x17",
515
+ ECC00014019x19 = "ECC000_140_19x19",
516
+ ECC00014021x21 = "ECC000_140_21x21",
517
+ ECC00014023x23 = "ECC000_140_23x23",
518
+ ECC00014025x25 = "ECC000_140_25x25",
519
+ ECC00014027x27 = "ECC000_140_27x27",
520
+ ECC00014029x29 = "ECC000_140_29x29",
521
+ ECC00014031x31 = "ECC000_140_31x31",
522
+ ECC00014033x33 = "ECC000_140_33x33",
523
+ ECC00014035x35 = "ECC000_140_35x35",
524
+ ECC00014037x37 = "ECC000_140_37x37",
525
+ ECC00014039x39 = "ECC000_140_39x39",
526
+ ECC00014041x41 = "ECC000_140_41x41",
527
+ ECC00014043x43 = "ECC000_140_43x43",
528
+ ECC00014045x45 = "ECC000_140_45x45",
529
+ ECC00014047x47 = "ECC000_140_47x47",
530
+ ECC00014049x49 = "ECC000_140_49x49",
531
+ ECC20010x10 = "ECC200_10x10",
532
+ ECC20012x12 = "ECC200_12x12",
533
+ ECC20014x14 = "ECC200_14x14",
534
+ ECC20016x16 = "ECC200_16x16",
535
+ ECC20018x18 = "ECC200_18x18",
536
+ ECC20020x20 = "ECC200_20x20",
537
+ ECC20022x22 = "ECC200_22x22",
538
+ ECC20024x24 = "ECC200_24x24",
539
+ ECC20026x26 = "ECC200_26x26",
540
+ ECC20032x32 = "ECC200_32x32",
541
+ ECC20036x36 = "ECC200_36x36",
542
+ ECC20040x40 = "ECC200_40x40",
543
+ ECC20044x44 = "ECC200_44x44",
544
+ ECC20048x48 = "ECC200_48x48",
545
+ ECC20052x52 = "ECC200_52x52",
546
+ ECC20064x64 = "ECC200_64x64",
547
+ ECC20072x72 = "ECC200_72x72",
548
+ ECC20080x80 = "ECC200_80x80",
549
+ ECC20088x88 = "ECC200_88x88",
550
+ ECC20096x96 = "ECC200_96x96",
551
+ ECC200104x104 = "ECC200_104x104",
552
+ ECC200120x120 = "ECC200_120x120",
553
+ ECC200132x132 = "ECC200_132x132",
554
+ ECC200144x144 = "ECC200_144x144",
555
+ ECC2008x18 = "ECC200_8x18",
556
+ ECC2008x32 = "ECC200_8x32",
557
+ ECC20012x26 = "ECC200_12x26",
558
+ ECC20012x36 = "ECC200_12x36",
559
+ ECC20016x36 = "ECC200_16x36",
560
+ ECC20016x48 = "ECC200_16x48",
561
+ DMRE8x48 = "DMRE_8x48",
562
+ DMRE8x64 = "DMRE_8x64",
563
+ DMRE8x80 = "DMRE_8x80",
564
+ DMRE8x96 = "DMRE_8x96",
565
+ DMRE8x120 = "DMRE_8x120",
566
+ DMRE8x144 = "DMRE_8x144",
567
+ DMRE12x64 = "DMRE_12x64",
568
+ DMRE12x88 = "DMRE_12x88",
569
+ DMRE16x64 = "DMRE_16x64",
570
+ DMRE20x36 = "DMRE_20x36",
571
+ DMRE20x44 = "DMRE_20x44",
572
+ DMRE20x64 = "DMRE_20x64",
573
+ DMRE22x48 = "DMRE_22x48",
574
+ DMRE24x48 = "DMRE_24x48",
575
+ DMRE24x64 = "DMRE_24x64",
576
+ DMRE26x40 = "DMRE_26x40",
577
+ DMRE26x48 = "DMRE_26x48",
578
+ DMRE26x64 = "DMRE_26x64"
579
+ }
500
580
  /**
501
581
  * See DecodeType
502
582
  */
@@ -1908,6 +1988,10 @@ export declare class ReaderParams {
1908
1988
  * Allows engine for 1D barcodes to quickly recognize middle slice of an image and return result without using any time-consuming algorithms. Default value: False.
1909
1989
  */
1910
1990
  'fastScanOnly'?: boolean;
1991
+ /**
1992
+ * Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False.
1993
+ */
1994
+ 'allowAdditionalRestorations'?: boolean;
1911
1995
  /**
1912
1996
  * Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time.
1913
1997
  */
@@ -2448,6 +2532,11 @@ Mode helps to quickly recognize generated barcodes from Internet.
2448
2532
  Default value: False.
2449
2533
  */
2450
2534
  'fastScanOnly'?: boolean;
2535
+ /**
2536
+ * Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type.
2537
+ Default value: False.
2538
+ */
2539
+ 'allowAdditionalRestorations'?: boolean;
2451
2540
  /**
2452
2541
  * Sets threshold for detected regions that may contain barcodes.
2453
2542
  Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further.
@@ -2631,6 +2720,11 @@ Mode helps to quickly recognize generated barcodes from Internet.
2631
2720
  Default value: False.
2632
2721
  */
2633
2722
  'fastScanOnly'?: boolean;
2723
+ /**
2724
+ * Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type.
2725
+ Default value: False.
2726
+ */
2727
+ 'allowAdditionalRestorations'?: boolean;
2634
2728
  /**
2635
2729
  * Sets threshold for detected regions that may contain barcodes.
2636
2730
  Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose-barcode-cloud-node",
3
- "version": "23.7.0",
3
+ "version": "23.8.0",
4
4
  "description": "Aspose.BarCode Cloud SDK for Node.js",
5
5
  "homepage": "https://products.aspose.cloud/barcode/nodejs",
6
6
  "repository": {