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.
package/lib/AsposeBarcode.js
CHANGED
package/lib/ComplexBarcode.js
CHANGED
|
@@ -531,7 +531,7 @@ QrBillStandardVersion =
|
|
|
531
531
|
* Version 2.0
|
|
532
532
|
*
|
|
533
533
|
*/
|
|
534
|
-
V2_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
package/lib/Recognition.js
CHANGED
|
@@ -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:
|
|
Binary file
|