Custom CameraX with Preview Frame Identity Card and Head with Identity Card
Thanks to https://github.com/robertlevonyan/CameraXDemo for references
For now only support with Kotlin
allprojects {
repositories {
...
maven {
url 'https://jitpack.io'
}
}
}
dependencies {
...
implementation "androidx.camera:camera-view:<LATEST_VERSION>"
implementation 'com.github.nauhalf:Camerax:<LATEST_VERSION>'
}
<uses-feature android:name="android.hardware.camera.any" />
<uses-permission android:name="android.permission.CAMERA"/>
private val cameraUtil: CameraUtil by lazy {
CameraUtil(this)
.setLifecycleOwner(this)
.setCoroutineScope(this.lifecycleScope)
.setPreviewView(viewFinder)
.setOutputDirectory(outputDirectory())
.setTimer(CameraTimer.S3)
.setImageQuality(ImageCapture.CAPTURE_MODE_MAXIMIZE_QUALITY)
.setFlashMode(ImageCapture.FLASH_MODE_OFF)
}
//set Output Directory
private fun outputDirectory(): String {
val mediaDir = this.externalMediaDirs.firstOrNull()?.let {
File(it, resources.getString(R.string.app_name)).apply {
mkdirs()
}
}
return if (mediaDir != null && mediaDir.exists()) mediaDir.absolutePath else filesDir.absolutePath
}
// Start Camera
cameraUtil.startCamera()
// Take Photo
cameraUtil.takePicture({
val msg = "Photo capture succeeded: $it"
Toast.makeText(baseContext, msg, Toast.LENGTH_SHORT).show()
Log.d(CameraUtil.TAG, msg)
}, {
//callback if use timer
vm.setTimer(it)
})
// Set flash after camera start
cameraUtil.flash(
if (cameraUtil.getFlashMode() == ImageCapture.FLASH_MODE_OFF) {
Toast.makeText(this, "FLASH_MODE_ON", Toast.LENGTH_SHORT).show()
ImageCapture.FLASH_MODE_ON
} else {
Toast.makeText(this, "FLASH_MODE_OFF", Toast.LENGTH_SHORT).show()
ImageCapture.FLASH_MODE_OFF
}
)
// Camera Selector
cameraUtil.flip { selector ->
vm.setCameraSelector(selector)
}
// Don't forget to call unbind & unregisterDisplayManager() in onDestroy() function
override fun onDestroy() {
super.onDestroy()
cameraUtil.unbind()
cameraUtil.unregisterDisplayManager()
}
<id.dipay.camerax.HeadPersonView
android:id="@+id/personFrame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<id.dipay.camerax.CardIdentityView
android:id="@+id/identityFrame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
Copyright [2021] [Naufal & Dzaky]
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.