You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// What the default color conversion will be (grayscale, original, enhanced).
170
170
DefaultColor:"original",
171
+
172
+
// Whether to perform on-device OCR after scanning completes.
173
+
PerformOnDeviceOCR:false,
174
+
175
+
// What the output format will be (jpeg, pdfMerged, pdfSingle). (Default jpeg)
176
+
OutputFormat:"jpeg",
171
177
172
178
// Optional. Only affects Android.
173
179
@@ -385,6 +391,12 @@ CameraModeMulti: {name: "Name", message: "Message", image: "{name of image in As
385
391
CameraModeSegmented: {name: "Name", message: "Message", image: "{name of image in Assets.xcassets}"}
386
392
```
387
393
394
+
## How to clear the storage.
395
+
396
+
```javascript
397
+
KlippaScannerSDK.purge()
398
+
```
399
+
388
400
## Important iOS notes
389
401
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`.
0 commit comments