Skip to content

ujizin/Camposer

Camposer

Static Badge Static Badge

πŸ“Έ A multiplatform camera library built with Jetpack Compose for taking photos, recording videos, controlling flash/torch, zooming, and more.


✨ Check out the sample projects

πŸš€ Quick Start

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>")
  }
}

🧩 Basic Usage

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
}

✨ Features

  • πŸ“Έ 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)

πŸ“š Documentation

Visit the docs to learn more: ujizin.github.io/Camposer

πŸ› οΈ Usage Examples

πŸ“Έ Taking Pictures

Use CameraSession and call takePicture:

// Capture into a temporary byte array
cameraSession.takePicture { result ->
  /* ... */
}

// Capture into a file
cameraSession.takePicture(fileName) { result -> /* ... */ }

πŸŽ₯ Recording Videos

Set captureMode = CaptureMode.Video in CameraPreview, then call startRecording and stopRecording.

cameraSession.startRecording(fileName) { result ->
  /* ... */
}
cameraSession.stopRecording()

πŸ”„ Switching Cameras

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.inverse

βž• More

To explore additional features, check the documentation.

Have fun code()! πŸ‘¨β€πŸ’»

✨ Inspiration

Camposer includes features inspired by react-native-vision-camera.

πŸ“„ License

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.