Code Analyzer (Code Scan)
Code scan
Camposer supports barcode and QR code scanning via an add-on library.
Installation
Add the library to your project:
Info
The latest version can be found at the top-right corner of this documentation or on the Camposer GitHub page.
Supported Code Types
The code scanner supports the following formats:
- QRCode
- Barcode39
- Barcode93
- Barcode128
- BarcodeEAN8
- BarcodeEAN13
- CodaBar
- ITF
- Aztec
- DataMatrix
- PDF417
- UPCE
- UPCA
Code result
The result includes the detected text, the provided type, the frame rectangle, and the corner points.
The frame rectangle is useful for 2D drawing, while the corner points are better suited for 3D rendering.
Usage example
val cameraSession = rememberCameraSession()
val codeImageAnalyzer = cameraSession.rememberCodeImageAnalyzer(
codeTypes = listOf(CodeType.QRCode),
onError = {},
) { result ->
// result.type - code type scanned
// result.text - result text
}
CameraPreview(
cameraSession = cameraSession,
imageAnalyzer = codeImageAnalyzer,
)