πΈ A multiplatform camera library built with Jetpack Compose for taking photos, recording videos, controlling flash/torch, zooming, and more.
β¨ Check out the sample projects
Add the dependencies to your module build.gradle.kts, then sync your project:
// Android
dependencies {
implementation("io.github.ujizin:camposer:<version>")
}
// Kotlin Multiplatform
sourceSets {
commonMain.dependencies {
implementation("io.github.ujizin:camposer:<version>")
// Required when you want to use code analysis features (e.g., QR code scanning).
implementation("io.github.ujizin:camposer-code-scanner:<version>")
}
}
To show the CameraPreview composable, use the example below:
val controller = remember { CameraController() }
val cameraSession = rememberCameraSession(controller)
var camSelector by remember { mutableStateOf(CamSelector.Back) }
CameraPreview(
cameraSession = cameraSession,
camSelector = camSelector,
) {
// Camera Preview UI
}- πΈ Take pictures
- π₯ Record videos
- π Zoom
- π― Focus support (tap to focus)
- β‘ Flash mode
- π¦ Torch
- ποΈ Exposure compensation
- πΌοΈ Image/video quality controls
- π Multi-camera lens support (Ultra-wide, Wide & Telephoto)
- β±οΈ 30/60 FPS video recording
- π¬ Video stabilization (iOS only for now)
- π§ Image analyzer (code scanner)
Visit the docs to learn more: ujizin.github.io/Camposer
Use CameraSession and call takePicture:
// Capture into a temporary byte array
cameraSession.takePicture { result ->
/* ... */
}
// Capture into a file
cameraSession.takePicture(fileName) { result -> /* ... */ }Set captureMode = CaptureMode.Video in CameraPreview, then call startRecording and stopRecording.
cameraSession.startRecording(fileName) { result ->
/* ... */
}
cameraSession.stopRecording()To switch cameras, pass camSelector to CameraPreview (as shown above) and update its state.
// Front camera
camSelector = CamSelector.Front
// Back camera
camSelector = CamSelector.Back
// Toggle camera selector
camSelector = camSelector.inverseTo explore additional features, check the documentation.
Have fun code()! π¨βπ»
Camposer includes features inspired by react-native-vision-camera.
Copyright 2022 ujizin (Lucas Yuji)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


