7.6.14
Linux
Not sure which Scandit product fits your use case?
Install the Scandit plugin and use the /data-capture-sdk skill so that your AI coding agent can recommend the right product for your use case. More info →
Run the following command in your project directory. It detects the supported coding agents you have installed and adds the Scandit plugin to each. Re-run it to update.
npx plugins add scandit/skillsPrefer to set it up yourself? Manual installation steps for each agent →
Barcode Generator
The Barcode Generator is a simple API to generate barcodes directly from the Scandit SDK. This document describes the JSON format understood by the sc_barcode_generator_set_options() function.
General Options
foregroundColor: 4-tuple of integers [r, g, b, a] withr,g,bandabeing in the range [0, 255]backgroundColor: 4-tuple of integers [r, g, b, a] withr,g,bandabeing in the range [0, 255]
2D Symbologies
QR Code
errorCorrectionLevel: string, may be"L"(up to 7% damage),"M"(up to 15% damage),"Q"(up to 25% damage) or"H"(up to 30% damage). Default correction level is"M".versionNumber: positive integer, overrides desired version number. Version number is automatically chosen if not set. Barcode generation might fail if version number is too small.{
"foregroundColor" : [ 255, 0, 0, 255 ],
"backgroundColor" : [ 0, 0, 255, 255 ],
"errorCorrectionLevel": "Q"
}