react-native-rectangle-doc-scanner 7.35.0 → 7.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -559,27 +559,35 @@ class CameraController(
|
|
|
559
559
|
val viewHeight = previewView.height.toFloat()
|
|
560
560
|
val preview = previewSize ?: return
|
|
561
561
|
if (viewWidth == 0f || viewHeight == 0f) return
|
|
562
|
-
val
|
|
562
|
+
val rotation = previewView.display?.rotation ?: Surface.ROTATION_0
|
|
563
563
|
Log.d(
|
|
564
564
|
TAG,
|
|
565
565
|
"[TRANSFORM] rotation=${displayRotationDegrees()} view=${viewWidth}x${viewHeight} preview=${preview.width}x${preview.height}"
|
|
566
566
|
)
|
|
567
567
|
|
|
568
568
|
val matrix = Matrix()
|
|
569
|
-
val
|
|
570
|
-
val
|
|
571
|
-
|
|
569
|
+
val viewRect = RectF(0f, 0f, viewWidth, viewHeight)
|
|
570
|
+
val bufferRect = if (rotation == Surface.ROTATION_90 || rotation == Surface.ROTATION_270) {
|
|
571
|
+
RectF(0f, 0f, preview.height.toFloat(), preview.width.toFloat())
|
|
572
|
+
} else {
|
|
573
|
+
RectF(0f, 0f, preview.width.toFloat(), preview.height.toFloat())
|
|
574
|
+
}
|
|
575
|
+
val centerX = viewRect.centerX()
|
|
576
|
+
val centerY = viewRect.centerY()
|
|
572
577
|
|
|
573
|
-
//
|
|
574
|
-
matrix.
|
|
578
|
+
// Center-crop without distortion for all rotations.
|
|
579
|
+
matrix.setRectToRect(bufferRect, viewRect, Matrix.ScaleToFit.CENTER)
|
|
580
|
+
val scale = max(viewWidth / bufferRect.width(), viewHeight / bufferRect.height())
|
|
581
|
+
matrix.postScale(scale, scale, centerX, centerY)
|
|
582
|
+
val rotateDegrees = when (rotation) {
|
|
583
|
+
Surface.ROTATION_90 -> -90f
|
|
584
|
+
Surface.ROTATION_180 -> 180f
|
|
585
|
+
Surface.ROTATION_270 -> 90f
|
|
586
|
+
else -> 0f
|
|
587
|
+
}
|
|
575
588
|
if (rotateDegrees != 0f) {
|
|
576
|
-
matrix.postRotate(rotateDegrees)
|
|
589
|
+
matrix.postRotate(rotateDegrees, centerX, centerY)
|
|
577
590
|
}
|
|
578
|
-
val rotatedWidth = if (rotationDegrees == 90 || rotationDegrees == 270) bufferHeight else bufferWidth
|
|
579
|
-
val rotatedHeight = if (rotationDegrees == 90 || rotationDegrees == 270) bufferWidth else bufferHeight
|
|
580
|
-
val scale = max(viewWidth / rotatedWidth, viewHeight / rotatedHeight)
|
|
581
|
-
matrix.postScale(scale, scale)
|
|
582
|
-
matrix.postTranslate(viewWidth / 2f, viewHeight / 2f)
|
|
583
591
|
|
|
584
592
|
previewView.setTransform(matrix)
|
|
585
593
|
Log.d(TAG, "[TRANSFORM] Matrix applied successfully")
|