Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@klippa/react-native-klippa-scanner-sdk
Advanced tools
Allows you to take pictures with the Klippa Scanner SDK from React Native.
Please be aware you need to have a license to use this SDK. If you would like to use our scanner, please contact us here
Edit the file android/build.gradle
, add the Klippa Maven repository:
allprojects {
repositories {
// ... other repositories
maven {
credentials {
username "{your-username}"
password "{your-password}"
}
url "https://custom-ocr.klippa.com/sdk/android/maven"
}
}
}
Replace the {your-username}
and {your-password}
values with the ones provided by Klippa.
Edit the file ios/Podfile
, add the Klippa CocoaPod:
// Edit the platform to a minimum of 10.0, our SDK doesn't support earlier iOS versions.
platform :ios, '10.0'
target 'YourApplicationName' do
# Pods for YourApplicationName
// ... other pods
pod 'Klippa-Scanner', podspec: 'https://custom-ocr.klippa.com/sdk/ios/specrepo/{your-username}/{your-password}/KlippaScanner/0.3.4.podspec'
end
Replace the {your-username}
and {your-password}
values with the ones provided by Klippa.
Edit the file ios/{project-name}/Info.plist
and add the NSCameraUsageDescription
value:
...
<key>NSCameraUsageDescription</key>
<string>Access to your camera is needed to photograph documents.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>Access to your photo library is used to save the images of documents.</string>
...
$ npm install @klippa/react-native-klippa-scanner-sdk --save
Don't forget to run pod install
in the ios folder when running the iOS app.
$ react-native link @klippa/react-native-klippa-scanner-sdk
import KlippaScannerSDK from '@klippa/react-native-klippa-scanner-sdk';
// Ask for camera permission.
KlippaScannerSDK.getCameraPermission().then((authStatus) => {
if (authStatus.Status !== "Authorized") {
// Do something here to tell the user how they should enable the camera.
Alert.alert("No access to camera");
return;
}
// Start the scanner.
KlippaScannerSDK.getCameraResult({
// Required
License: "{license-received-by-klippa}",
// Optional.
// Whether to show the icon to enable "multi-document-mode"
AllowMultipleDocuments: true,
// Whether the "multi-document-mode" should be enabled by default.
DefaultMultipleDocuments: true,
// Whether the crop mode (auto edge detection) should be enabled by default.
DefaultCrop: true,
// Define the max resolution of the output file. It’s possible to set only one of these values. We will make sure the picture fits in the given resolution. We will also keep the aspect ratio of the image. Default is max resolution of camera.
ImageMaxWidth: 1920,
ImageMaxHeight: 1080,
// Set the output quality (between 0-100) of the jpg encoder. Default is 100.
ImageMaxQuality: 95,
// The warning message when someone should move closer to a document, should be a string.
MoveCloserMessage: "Move closer to the document",
// Optional. Only affects Android.
// What the default color conversion will be (grayscale, original).
DefaultColor: "original",
// Where to put the image results.
StoragePath: "/sdcard/scanner",
// The filename to use for the output images, supports replacement tokens %dateTime% and %randomUUID%.
OutputFilename: "KlippaScannerExample-%dateTime%-%randomUUID%",
// To limit the amount of images that can be taken. (Android only)
ImageLimit: 10,
// The message to display when the limit has been reached. (Android only)
ImageLimitReachedMessage: "You have reached the image limit",
// Optional. Only affects iOS.
// The warning message when the camera result is too bright.
ImageTooBrightMessage: "The image is too bright",
// The warning message when the camera result is too dark.
ImageTooDarkMessage: "The image is too dark",
// The primary color of the interface, should be a UIColor.
PrimaryColor: null,
// The accent color of the interface, should be a UIColor.
AccentColor: null,
// The overlay color (when using document detection), should be a UIColor.
OverlayColor: null,
// The color of the background of the warning message, should be a UIColor.
WarningBackgroundColor: null,
// The color of the text of the warning message, should be a UIColor.
WarningTextColor: null,
// The amount of opacity for the overlay, should be a float.
OverlayColorAlpha: 0.75,
// The amount of seconds the preview should be visible for, should be a float.
PreviewDuration: 1.0,
// Whether the scanner automatically cuts out documents, should be a Boolean.
IsCropEnabled: true,
// Whether the camera has a view finder overlay (a helper grid so the user knows where the document should be), should be a Boolean.
IsViewFinderEnabled: true,
// If you would like to use a custom model for object detection. Model + labels file should be packaged in your bundle.
Model: {name: "model", labelsName: "labels"},
// If you would like to enable automatic capturing of images.
Timer: {enabled: true, duration: 0.4},
// To add extra horizontal and / or vertical padding to the cropped image.
CropPadding: {width: 100, height: 100},
// After capture, show a checkmark preview with this success message, instead of a preview of the image.
Success: {message: "Success!", previewDuration: 0.3},
});
});
The result of KlippaScannerSDK.getCameraResult()
is a Promise, so you can get the result with:
KlippaScannerSDK.getCameraResult(options).then((result) => {
console.log(result);
}).reject((reason) => {
console.log(reason);
});
The content of the result object is:
{
// Whether the MultipleDocuments option was turned on, so you can save it as default.
"MultipleDocuments": true,
// Whether the Crop option was turned on, so you can save it as default (Android only).
"Crop": true,
// What color option was used, so you can save it as default (Android only).
"Color": "original",
// An array of images.
"Images": [
{
"Filepath": "/sdcard/scanner/dd0ca979-84e1-426e-8877-586e802fed1f.jpg"
}
]
}
The reject reason object has a code and a message, the used codes are:
Edit the file android/build.gradle
, add the following:
allprojects {
// ... other definitions
project.ext {
klippaScannerVersion = "{version}"
}
}
Replace the {version}
value with the version you want to use.
Edit the file ios/Podfile
, change the pod line of Klippa-Scanner
and replace 0.3.4.podspec
with {version}.podspec
, replace the {version}
value with the version you want to use.
Add or edit the file android/app/src/main/res/values/colors.xml
, add the following:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="klippa_scanner_sdk_color_Primary">#2dc36a</color>
<color name="klippa_scanner_sdk_color_PrimaryDark">#308D53</color>
<color name="klippa_scanner_sdk_color_Accent">#2dc36a</color>
<color name="klippa_scanner_sdk_color_Overlay">#2dc36a</color>
<color name="klippa_scanner_sdk_color_Warning">#BFFF0000</color>
</resources>
Use the following properties in the config when running getCameraResult
: PrimaryColor
, AccentColor
, OverlayColor
, WarningBackgroundColor
, WarningTextColor
, OverlayColorAlpha
.
Older iOS versions do not ship the Swift libraries. To make sure the SDK works on older iOS versions, you can configure the build to embed the Swift libraries using the build setting EMBEDDED_CONTENT_CONTAINS_SWIFT = YES
.
We started using XCFrameworks from version 0.1.0, if you want to use that version or up, you need CocoaPod version 1.9.0 or higher.
When using a custom trained model for object detection, add the following to your app's build.gradle file to ensure Gradle doesn’t compress the models when building the app:
android {
aaptOptions {
noCompress "tflite"
}
}
Klippa is a scale-up from Groningen, The Netherlands and was founded in 2015 by six Dutch IT specialists with the goal to digitize paper processes with modern technologies.
We help clients enhance the effectiveness of their organization by using machine learning and OCR. Since 2015 more than a 1000 happy clients have been served with a variety of the software solutions that Klippa offers. Our passion is to help our clients to digitize paper processes by using smart apps, accounts payable software and data extraction by using OCR.
The MIT License (MIT)
FAQs
Allows you to take pictures with the Klippa Scanner SDK from React Native.
The npm package @klippa/react-native-klippa-scanner-sdk receives a total of 113 weekly downloads. As such, @klippa/react-native-klippa-scanner-sdk popularity was classified as not popular.
We found that @klippa/react-native-klippa-scanner-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.