Android 中的 metadataOutputRectConverted(fromLayerRect:)
metadataOutputRectConverted(fromLayerRect:) in Android
目前我在从相机预览中裁剪矩形时遇到问题。基本上我已经使用 fotoapparat 设置了相机,我已经将预览的 scaleType 设置为 ScaleType.CenterCrop
.
因为这会拉伸预览以填满屏幕(我有一个全屏纵向模式相机预览)我不知道相机的真实宽度。所以现在当我想根据屏幕上显示的矩形的大小从图像中裁剪出矩形时,它无法正确裁剪宽度。
我在 swift (iOS) 中遇到了类似的问题,但能够使用 metadataOutputRectConverted(fromLayerRect:)
解决它
我假设我必须做一些事情,比如找出相机预览层的真实大小,以便包括裁剪掉的任何内容以填满屏幕,并基于此计算矩形相对的新宽度到相机预览。
请参阅我的 关于此但 swift。就像这个 post(见截图)宽度没有按预期裁剪。
目前的裁剪方法,其中位图是我们在拍照后收到的图像,cameraView 基本上只是屏幕的宽度和高度,cropRectFrame 是屏幕中的矩形,我想在里面裁剪任何东西
private fun cropImage(bitmap: Bitmap, cameraFrame: View, cropRectFrame: View): Bitmap {
val heightOriginal = cameraFrame.height
val widthOriginal = cameraFrame.width
val heightFrame = cropRectFrame.height
val widthFrame = cropRectFrame.width
val leftFrame = cropRectFrame.left
val topFrame = cropRectFrame.top
val heightReal = bitmap.height
val widthReal = bitmap.width
val widthFinal = (widthFrame * widthReal / widthOriginal)
val heightFinal = (heightFrame * heightReal / heightOriginal)
val leftFinal = (leftFrame * widthReal / widthOriginal)
val topFinal = (topFrame * heightReal / heightOriginal)
return Bitmap.createBitmap(
bitmap, leftFinal, topFinal, widthFinal, heightFinal
)
}
感谢任何帮助。
我用下面的代码弄明白了。
private fun cropImage(bitmap: Bitmap, cameraFrame: View, cropRectFrame: View): Bitmap {
val scaleFactor: Double; val widthOffset: Double; val heightOffset: Double
if (cameraFrame.height * bitmap.width > cameraFrame.height * bitmap.width) {
scaleFactor = (bitmap.width).toDouble() / (cameraFrame.width).toDouble()
widthOffset = 0.0
heightOffset = (bitmap.height - cameraFrame.height * scaleFactor) / 2
} else {
scaleFactor = (bitmap.height).toDouble() / (cameraFrame.height).toDouble()
widthOffset = (bitmap.width - cameraFrame.width * scaleFactor) / 2
heightOffset = 0.0
}
val newX = cropRectFrame.left * scaleFactor + widthOffset
val newY = cropRectFrame.top * scaleFactor + heightOffset
val width = cropRectFrame.width * scaleFactor
val height = cropRectFrame.height * scaleFactor
return Bitmap.createBitmap(bitmap, (newX).toInt(), (newY).toInt(), (width).toInt(), (height).toInt())
}
目前我在从相机预览中裁剪矩形时遇到问题。基本上我已经使用 fotoapparat 设置了相机,我已经将预览的 scaleType 设置为 ScaleType.CenterCrop
.
因为这会拉伸预览以填满屏幕(我有一个全屏纵向模式相机预览)我不知道相机的真实宽度。所以现在当我想根据屏幕上显示的矩形的大小从图像中裁剪出矩形时,它无法正确裁剪宽度。
我在 swift (iOS) 中遇到了类似的问题,但能够使用 metadataOutputRectConverted(fromLayerRect:)
解决它我假设我必须做一些事情,比如找出相机预览层的真实大小,以便包括裁剪掉的任何内容以填满屏幕,并基于此计算矩形相对的新宽度到相机预览。
请参阅我的
目前的裁剪方法,其中位图是我们在拍照后收到的图像,cameraView 基本上只是屏幕的宽度和高度,cropRectFrame 是屏幕中的矩形,我想在里面裁剪任何东西
private fun cropImage(bitmap: Bitmap, cameraFrame: View, cropRectFrame: View): Bitmap {
val heightOriginal = cameraFrame.height
val widthOriginal = cameraFrame.width
val heightFrame = cropRectFrame.height
val widthFrame = cropRectFrame.width
val leftFrame = cropRectFrame.left
val topFrame = cropRectFrame.top
val heightReal = bitmap.height
val widthReal = bitmap.width
val widthFinal = (widthFrame * widthReal / widthOriginal)
val heightFinal = (heightFrame * heightReal / heightOriginal)
val leftFinal = (leftFrame * widthReal / widthOriginal)
val topFinal = (topFrame * heightReal / heightOriginal)
return Bitmap.createBitmap(
bitmap, leftFinal, topFinal, widthFinal, heightFinal
)
}
感谢任何帮助。
我用下面的代码弄明白了。
private fun cropImage(bitmap: Bitmap, cameraFrame: View, cropRectFrame: View): Bitmap {
val scaleFactor: Double; val widthOffset: Double; val heightOffset: Double
if (cameraFrame.height * bitmap.width > cameraFrame.height * bitmap.width) {
scaleFactor = (bitmap.width).toDouble() / (cameraFrame.width).toDouble()
widthOffset = 0.0
heightOffset = (bitmap.height - cameraFrame.height * scaleFactor) / 2
} else {
scaleFactor = (bitmap.height).toDouble() / (cameraFrame.height).toDouble()
widthOffset = (bitmap.width - cameraFrame.width * scaleFactor) / 2
heightOffset = 0.0
}
val newX = cropRectFrame.left * scaleFactor + widthOffset
val newY = cropRectFrame.top * scaleFactor + heightOffset
val width = cropRectFrame.width * scaleFactor
val height = cropRectFrame.height * scaleFactor
return Bitmap.createBitmap(bitmap, (newX).toInt(), (newY).toInt(), (width).toInt(), (height).toInt())
}