camera-samples icon indicating copy to clipboard operation
camera-samples copied to clipboard

Wrong picture orientation on Samsung devices

Open sargam01 opened this issue 2 years ago • 0 comments

Please follow the following instructions before filing a bug: i have added the orientationEventListener for getting the rotated image bt it not worked in Samsung and worked on one plus private val orientationEventListener by lazy { object : OrientationEventListener(this) { override fun onOrientationChanged(orientation: Int) { if (orientation == ORIENTATION_UNKNOWN) { return } val rotation = when (orientation) { in 45 until 135 -> Surface.ROTATION_270 in 135 until 225 -> Surface.ROTATION_180 in 225 until 315 -> Surface.ROTATION_90 else -> Surface.ROTATION_0 } imageCapture?.targetRotation = rotation } } }

sargam01 avatar May 22 '23 09:05 sargam01