GeniusScanSDK.ScanFlow.Android
4.4.6
See the version list below for details.
dotnet add package GeniusScanSDK.ScanFlow.Android --version 4.4.6
NuGet\Install-Package GeniusScanSDK.ScanFlow.Android -Version 4.4.6
<PackageReference Include="GeniusScanSDK.ScanFlow.Android" Version="4.4.6" />
paket add GeniusScanSDK.ScanFlow.Android --version 4.4.6
#r "nuget: GeniusScanSDK.ScanFlow.Android, 4.4.6"
// Install GeniusScanSDK.ScanFlow.Android as a Cake Addin #addin nuget:?package=GeniusScanSDK.ScanFlow.Android&version=4.4.6 // Install GeniusScanSDK.ScanFlow.Android as a Cake Tool #tool nuget:?package=GeniusScanSDK.ScanFlow.Android&version=4.4.6
Description
This Xamarin plugin allows you to access the Genius Scan SDK core features from a Xamarin.Android application:
- Automatic document detection
- Document perspective correction
- Image enhancement with 3 different modes (Black & white, Color, Photo)
- Batch scanning of several pages in row
- OCR to extract raw text from images and generate PDF with invisible text layer
Licence
This plugin is based on the Genius Scan SDK for which you need to setup a licence. You can aleady try the "demo" version for free by not setting a licence key, the only limitation being that the app will exit after 60 seconds.
To buy a licence or for any question regarding the SDK, please contact us at sdk@thegrizzlylabs.com!
Demo application
As an example, you can check our demo application
Usage
Set the licence key
Initialize the SDK with a valid licence key:
ScanFlow.Init(Xamarin.Essentials.Platform.CurrentActivity, licenseKey);
Init
will throw a LicenseException
if the license key is not valid anymore or if it does not match the application ID. Note that, for testing purpose, you can also use the plugin without a licence key, but it will only work for 60 seconds.
It is recommended to show a message to users asking them to update the application in case the license has expired.
Start the scanner module
The following line will start a scan flow with the corresponding configuration:
PluginBridge.ScanWithConfiguration(Xamarin.Essentials.Platform.CurrentActivity, configuration);
The method ScanWithConfiguration
takes a configuration
parameter which can take the following options:
source
:camera
orimage
(defaults to camera)sourceImageUrl
: an absolute image url, required ifsource
isimage
. Example:file:///var/…/image.png
multiPage
: boolean (defaults to true). If true, after a page is scanned, a prompt to scan another page will be displayed. If false, a single page will be scanned.defaultFilter
:none
,blackAndWhite
,color
,photo
(by default, the filter is chosen automatically)pdfPageSize
:fit
,a4
,letter
, defaults to fit.pdfMaxScanDimension
: max dimension in pixels when images are scaled before PDF generation, for example 2000 to fit both height and width within 2000px. Defaults to 0, which means no scaling is performed.jpegQuality
: JPEG quality used to compress captured images. Between 0 and 100, 100 being the best quality. Default is 60.postProcessingActions
: an array with the desired actions to display during the post processing screen (defaults to all actions). Possible actions arerotate
,editFilter
.flashButtonHidden
: boolean (default to false)defaultFlashMode
:auto
,on
,off
(default tooff
)foregroundColor
: string representing a color, must start with a#
. The color of the icons, text (defaults to '#ffffff').backgroundColor
: string representing a color, must start with a#
. The color of the toolbar, screen background (defaults to black)highlightColor
: string representing a color, must start with a#
. The color of the image overlays (default to blue)menuColor
: string representing a color, must start with a#
. The color of the menus (defaults to system defaults.)ocrConfiguration
: text recognition options. Text recognition will run on a background thread for every captured image. No text recognition will be applied if this parameter is not present.languages
: list of language codes (eg["eng"]
) for which to run text recognition. They should match the provided language files. Note that text recognition will take longer if multiple languages are specified.languagesDirectoryUrl
: folder containing the language files used for text recognition. Language files can be downloaded from https://github.com/tesseract-ocr/tessdata_fast.
The result of the scan flow will be provided in the OnActivityResult
callback:
protected override void OnActivityResult(Int32 requestCode, Result resultCode, Intent data)
{
PromiseResult result = PluginBridge.GetPromiseResultFromActivityResult(this, requestCode, (int)resultCode, data);
// Do something with the result
}
The result
object contains:
pdfUrl
: a PDF file of the scanned pages (example: "file://<filepath>.pdf")scans
: an array of scan objects. Each scan object has:originalUrl
: the original file as scanned from the camera. "file://<filepath>.jpeg"enhancedUrl
: the cropped and enhanced file, as processed by the SDK. "file://<filepath>.{jpeg|png}"ocrResult
: the result of text recognition for this scantext
: the raw text that was recognized
Proguard
Due to an issue in Xamarin, any Proguard files in AARs are not taken into account in Xamarin apps. This means any developer using the package has to manually add the -keep class com.geniusscansdk.** { *; }
line to their Xamarin proguard configuration until this Xamarin issue is fixed.
It's currently being tracked here: https://github.com/xamarin/xamarin-android/issues/3752
FAQ
How do I get the UI translated to another language?
The plugin supports a wide variety of languages:
- English (default)
- Arabic
- Danish
- German
- Spanish
- French
- Hebrew
- Indonesian
- Italian
- Japanese
- Korean
- Dutch
- Portuguese
- Russian
- Swedish
- Turkish
- Vietnamese
- Chinese (Simplified)
- Chinese (Traditional)
The device's locale determines the languages used by the plugin for all strings: user guidance, menus, dialogs…
What should I do if my license is invalid?
Make sure that the license key is correct, that is has not expired, and that it is used with the App ID it was generated for. Contact us at sdk@thegrizzlylabs.com for any information regarding the procurement and replacement of license keys.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid11.0 is compatible. |
-
- Xamarin.AndroidX.AppCompat (>= 1.3.1.1)
- Xamarin.AndroidX.ConstraintLayout (>= 2.1.0)
- Xamarin.AndroidX.Fragment (>= 1.3.6.1)
- XamarinLibrary.Xamarin.Android.Parse.Bolts.BoltsTasks (>= 1.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.3.0 | 287 | 10/4/2024 |
5.2.0 | 175 | 9/11/2024 |
5.1.5 | 138 | 8/5/2024 |
5.1.4 | 90 | 7/29/2024 |
5.1.3 | 108 | 7/26/2024 |
5.1.2 | 112 | 7/23/2024 |
5.1.1 | 152 | 7/11/2024 |
5.1.0 | 356 | 6/19/2024 |
5.0.8 | 287 | 6/5/2024 |
5.0.7 | 156 | 6/3/2024 |
5.0.6 | 215 | 5/24/2024 |
5.0.5 | 320 | 4/22/2024 |
5.0.4 | 158 | 4/18/2024 |
5.0.3 | 209 | 4/15/2024 |
5.0.2 | 234 | 4/9/2024 |
5.0.1 | 260 | 4/4/2024 |
5.0.0 | 194 | 4/3/2024 |
5.0.0-beta9 | 192 | 3/19/2024 |
5.0.0-beta8 | 254 | 3/5/2024 |
5.0.0-beta7 | 154 | 2/20/2024 |
5.0.0-beta6 | 178 | 2/15/2024 |
5.0.0-beta5 | 199 | 2/14/2024 |
5.0.0-beta4 | 144 | 2/9/2024 |
5.0.0-beta3 | 173 | 2/9/2024 |
5.0.0-beta2 | 178 | 2/7/2024 |
5.0.0-beta1 | 135 | 1/19/2024 |
4.21.1 | 217 | 2/14/2024 |
4.21.0 | 491 | 12/20/2023 |
4.20.1 | 327 | 12/12/2023 |
4.20.0 | 288 | 12/11/2023 |
4.19.0 | 294 | 11/27/2023 |
4.18.0 | 293 | 11/15/2023 |
4.17.0 | 247 | 11/15/2023 |
4.16.0 | 252 | 11/7/2023 |
4.15.0 | 526 | 11/2/2023 |
4.14.0 | 321 | 10/17/2023 |
4.13.0 | 378 | 9/1/2023 |
4.12.0 | 1,110 | 6/1/2023 |
4.11.0 | 1,219 | 5/24/2023 |
4.10.1 | 1,303 | 4/20/2023 |
4.10.0 | 450 | 4/13/2023 |
4.9.0 | 1,151 | 3/14/2023 |
4.8.0 | 1,935 | 1/24/2023 |
4.7.4 | 2,208 | 12/9/2022 |
4.7.3 | 1,266 | 11/17/2022 |
4.7.2 | 1,059 | 11/11/2022 |
4.7.1 | 970 | 11/9/2022 |
4.7.0 | 845 | 11/7/2022 |
4.6.0 | 1,158 | 10/4/2022 |
4.5.0 | 1,614 | 4/22/2022 |
4.4.7 | 1,334 | 3/26/2022 |
4.4.6 | 838 | 3/15/2022 |
4.4.5 | 813 | 3/1/2022 |
4.4.4 | 811 | 2/16/2022 |
4.4.3 | 895 | 1/16/2022 |
4.4.2 | 597 | 12/15/2021 |
4.4.1 | 1,040 | 12/8/2021 |
4.3.0 | 777 | 11/23/2021 |
4.2.2 | 878 | 11/12/2021 |
4.1.4 | 767 | 10/26/2021 |
4.1.3 | 560 | 9/28/2021 |
4.1.2 | 583 | 9/14/2021 |
4.1.1 | 642 | 9/10/2021 |
4.1.0 | 653 | 9/9/2021 |
4.0.12 | 579 | 8/26/2021 |
4.0.11 | 602 | 8/18/2021 |
4.0.10 | 657 | 7/2/2021 |
4.0.9 | 611 | 6/24/2021 |
4.0.8 | 621 | 5/7/2021 |
4.0.7 | 734 | 3/31/2021 |
4.0.6 | 560 | 3/29/2021 |
1.0.7 | 744 | 3/15/2021 |
1.0.5 | 765 | 2/9/2021 |