-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(makefile): bump .NET Android and iOS SDK versions to 3.0.0; add …
…"Parallel - First Scan" mode example (#3)
- Loading branch information
1 parent
8bc145f
commit 4d4c86b
Showing
4 changed files
with
78 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
MAUI/Resources/Raw/Configs/workflows_config_parallel_first_scan.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"cameraConfig": { | ||
"captureResolution": "1080p", | ||
"pictureResolution": "1080p" | ||
}, | ||
"flashConfig": { | ||
"mode": "manual", | ||
"alignment": "top_right" | ||
}, | ||
"viewPluginCompositeConfig": { | ||
"id": "Workflows|VIN or Barcode (parallelFirstScan)", | ||
"processingMode": "parallelFirstScan", | ||
"viewPlugins": [ | ||
{ | ||
"viewPluginConfig": { | ||
"pluginConfig": { | ||
"id": "VIN", | ||
"vinConfig": {} | ||
}, | ||
"cutoutConfig": { | ||
"style": "rect", | ||
"width": 720, | ||
"alignment": "top_half", | ||
"maxWidthPercent": "70%", | ||
"ratioFromSize": { | ||
"width": 62, | ||
"height": 9 | ||
}, | ||
"strokeWidth": 2, | ||
"strokeColor": "FFFFFF", | ||
"cornerRadius": 4, | ||
"outerColor": "000000", | ||
"outerAlpha": 0.0, | ||
"feedbackStrokeColor": "0099FF" | ||
}, | ||
"scanFeedbackConfig": { | ||
"animation": "traverse_multi", | ||
"animationDuration": 250, | ||
"style": "contour_rect", | ||
"strokeWidth": 2, | ||
"strokeColor": "0099FF", | ||
"beepOnResult": false, | ||
"vibrateOnResult": true, | ||
"blinkAnimationOnResult": false | ||
} | ||
} | ||
}, | ||
{ | ||
"viewPluginConfig": { | ||
"pluginConfig": { | ||
"id": "BARCODE", | ||
"barcodeConfig": { | ||
"barcodeFormats": [ "ALL" ] | ||
} | ||
}, | ||
"scanFeedbackConfig": { | ||
"animation": "traverse_multi", | ||
"animationDuration": 250, | ||
"style": "contour_rect", | ||
"strokeWidth": 2, | ||
"strokeColor": "00FF00", | ||
"beepOnResult": false, | ||
"vibrateOnResult": true, | ||
"blinkAnimationOnResult": false | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} |