-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: image cropping tool for OCR (closes #465)
- Loading branch information
Showing
9 changed files
with
454 additions
and
27 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
312 changes: 312 additions & 0 deletions
312
app/src/main/java/com/bnyro/translate/ui/components/ImageCropDialog.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,312 @@ | ||
/* | ||
* Copyright (c) 2024 You Apps | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package com.bnyro.translate.ui.components | ||
|
||
import android.graphics.Bitmap | ||
import androidx.compose.foundation.Canvas | ||
import androidx.compose.foundation.gestures.detectDragGestures | ||
import androidx.compose.foundation.layout.BoxWithConstraints | ||
import androidx.compose.foundation.layout.fillMaxSize | ||
import androidx.compose.material.icons.Icons | ||
import androidx.compose.material.icons.filled.ArrowBack | ||
import androidx.compose.material.icons.filled.Done | ||
import androidx.compose.material3.CenterAlignedTopAppBar | ||
import androidx.compose.material3.ExperimentalMaterial3Api | ||
import androidx.compose.material3.Text | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.runtime.getValue | ||
import androidx.compose.runtime.mutableStateOf | ||
import androidx.compose.runtime.remember | ||
import androidx.compose.runtime.rememberCoroutineScope | ||
import androidx.compose.runtime.setValue | ||
import androidx.compose.ui.Modifier | ||
import androidx.compose.ui.geometry.Offset | ||
import androidx.compose.ui.geometry.Size | ||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.graphics.PathEffect | ||
import androidx.compose.ui.graphics.asImageBitmap | ||
import androidx.compose.ui.graphics.drawscope.Stroke | ||
import androidx.compose.ui.input.pointer.PointerInputChange | ||
import androidx.compose.ui.input.pointer.pointerInput | ||
import androidx.compose.ui.platform.LocalContext | ||
import androidx.compose.ui.platform.LocalDensity | ||
import androidx.compose.ui.res.stringResource | ||
import androidx.compose.ui.unit.IntOffset | ||
import androidx.compose.ui.unit.IntSize | ||
import com.bnyro.translate.R | ||
import com.bnyro.translate.ext.toastFromMainThread | ||
import com.bnyro.translate.ui.dialogs.FullscreenDialog | ||
import com.bnyro.translate.util.ImageHelper | ||
import kotlin.math.absoluteValue | ||
import kotlin.math.roundToInt | ||
import kotlinx.coroutines.Dispatchers | ||
import kotlinx.coroutines.launch | ||
import kotlinx.coroutines.withContext | ||
|
||
private const val MAX_FRAME_CLICK_DIST = 70f | ||
|
||
private enum class BorderType { | ||
TOP, | ||
RIGHT, | ||
BOTTOM, | ||
LEFT, | ||
} | ||
|
||
@OptIn(ExperimentalMaterial3Api::class) | ||
@Composable | ||
fun ImageCropDialog( | ||
bitmap: Bitmap, | ||
onEditedBitmap: (Bitmap) -> Unit, | ||
onDismissRequest: () -> Unit | ||
) { | ||
val scope = rememberCoroutineScope() | ||
val context = LocalContext.current | ||
|
||
var canvasSize = remember { Size(0f, 0f) } | ||
var size = remember { Size(0f, 0f) } | ||
var offset = remember { Offset(0f, 0f) } | ||
|
||
FullscreenDialog( | ||
onDismissRequest = onDismissRequest, | ||
topBar = { | ||
CenterAlignedTopAppBar( | ||
title = { Text(stringResource(R.string.image_translation)) }, | ||
navigationIcon = { | ||
StyledIconButton( | ||
imageVector = Icons.Default.ArrowBack, | ||
onClick = { onDismissRequest() } | ||
) | ||
}, | ||
actions = { | ||
StyledIconButton( | ||
imageVector = Icons.Default.Done, | ||
onClick = { | ||
val (imageCanvasWidth, imageCanvasHeight) = fitImageSizeToDimensions( | ||
bitmap, | ||
canvasSize.width, | ||
canvasSize.height | ||
) | ||
val widthFactor = bitmap.width.toFloat() / imageCanvasWidth | ||
val heightFactor = bitmap.height.toFloat() / imageCanvasHeight | ||
val emptyHorizontalSpace = canvasSize.width - imageCanvasWidth | ||
val emptyVerticalSpace = canvasSize.height - imageCanvasHeight | ||
|
||
val cropSize = Size( | ||
size.width * widthFactor, | ||
size.height * heightFactor | ||
) | ||
val cropOffset = Offset( | ||
(offset.x - emptyHorizontalSpace / 2) * widthFactor, | ||
(offset.y - emptyVerticalSpace / 2) * heightFactor | ||
) | ||
if (arrayOf( | ||
cropSize.height, | ||
cropSize.width, | ||
cropOffset.x, | ||
cropOffset.y | ||
).any { it < 0 } || cropOffset.x + cropSize.width > bitmap.width || | ||
cropOffset.y + cropSize.height > bitmap.height | ||
) { | ||
context.toastFromMainThread(R.string.invalid_selection_area) | ||
return@StyledIconButton | ||
} | ||
|
||
scope.launch(Dispatchers.IO) { | ||
val resizedBitmap = | ||
ImageHelper.cropImage(bitmap, cropSize, cropOffset) | ||
|
||
withContext(Dispatchers.Main) { | ||
onEditedBitmap(resizedBitmap) | ||
onDismissRequest() | ||
} | ||
} | ||
} | ||
) | ||
} | ||
) | ||
} | ||
) { | ||
CropImageView( | ||
image = ImageHelper.setAlpha(bitmap, 100), | ||
onSizeChanged = { size = it }, | ||
onOffsetChanged = { offset = it }, | ||
onCanvasSizeChanged = { width, height -> | ||
canvasSize = Size(width, height) | ||
} | ||
) | ||
} | ||
} | ||
|
||
@Composable | ||
fun CropImageView( | ||
modifier: Modifier = Modifier, | ||
image: Bitmap, | ||
onSizeChanged: (size: Size) -> Unit, | ||
onOffsetChanged: (offset: Offset) -> Unit, | ||
onCanvasSizeChanged: (width: Float, height: Float) -> Unit | ||
) { | ||
BoxWithConstraints( | ||
modifier = modifier | ||
.fillMaxSize() | ||
) { | ||
val density = LocalDensity.current | ||
val (maxWidth, maxHeight) = remember { | ||
with(density) { | ||
maxWidth.toPx() to maxHeight.toPx() | ||
}.also { | ||
onCanvasSizeChanged(it.first, it.second) | ||
} | ||
} | ||
|
||
var selectableAreaSize by remember { | ||
val size = Size(maxWidth / 3, maxHeight / 3) | ||
onSizeChanged(size) | ||
mutableStateOf(size) | ||
} | ||
|
||
var selectableAreaOffset by remember { | ||
val offsetX = (maxWidth - selectableAreaSize.width) / 2 | ||
val offsetY = (maxHeight - selectableAreaSize.height) / 2 | ||
val offset = Offset(offsetX, offsetY) | ||
onOffsetChanged(offset) | ||
mutableStateOf(offset) | ||
} | ||
|
||
val (imageWidthScaled, imageHeightScaled) = remember { | ||
fitImageSizeToDimensions(image, maxWidth, maxHeight) | ||
} | ||
|
||
Canvas(modifier = Modifier | ||
.fillMaxSize() | ||
.pointerInput(Unit) { | ||
detectDragGestures { change, dragAmount -> | ||
val borders = getCloseBorders(change, selectableAreaSize, selectableAreaOffset) | ||
if (borders.isNotEmpty()) { | ||
selectableAreaSize = Size( | ||
if (borders.contains(BorderType.LEFT)) selectableAreaSize.width - dragAmount.x else selectableAreaSize.width + dragAmount.x, | ||
if (borders.contains(BorderType.TOP)) selectableAreaSize.height - dragAmount.y else selectableAreaSize.height + dragAmount.y | ||
) | ||
selectableAreaOffset = Offset( | ||
if (borders.contains(BorderType.LEFT)) selectableAreaOffset.x + dragAmount.x else selectableAreaOffset.x, | ||
if (borders.contains(BorderType.TOP)) selectableAreaOffset.y + dragAmount.y else selectableAreaOffset.y, | ||
) | ||
|
||
onSizeChanged(selectableAreaSize) | ||
onOffsetChanged(selectableAreaOffset) | ||
} else if (isInArea(change, selectableAreaSize, selectableAreaOffset)) { | ||
selectableAreaOffset = Offset( | ||
selectableAreaOffset.x + dragAmount.x, | ||
selectableAreaOffset.y + dragAmount.y | ||
) | ||
|
||
onOffsetChanged(selectableAreaOffset) | ||
} | ||
} | ||
} | ||
) { | ||
drawImage( | ||
image.asImageBitmap(), | ||
dstOffset = IntOffset( | ||
((maxWidth - imageWidthScaled) / 2).toInt(), | ||
((maxHeight - imageHeightScaled) / 2).toInt() | ||
), | ||
dstSize = IntSize(imageWidthScaled.roundToInt(), imageHeightScaled.roundToInt()) | ||
) | ||
|
||
drawRect( | ||
color = Color(0x75ffffff), | ||
size = selectableAreaSize, | ||
topLeft = selectableAreaOffset | ||
) | ||
|
||
val stroke = Stroke( | ||
width = 4f, | ||
pathEffect = PathEffect.dashPathEffect(floatArrayOf(10f, 10f), 0f) | ||
) | ||
drawRoundRect( | ||
style = stroke, | ||
color = Color.White, | ||
topLeft = selectableAreaOffset, | ||
size = selectableAreaSize | ||
) | ||
} | ||
} | ||
} | ||
|
||
private fun isInArea( | ||
event: PointerInputChange, | ||
selectableAreaSize: Size, | ||
selectableAreaOffset: Offset | ||
): Boolean { | ||
return event.position.x > selectableAreaOffset.x && | ||
event.position.x < selectableAreaOffset.x + selectableAreaSize.width && | ||
event.position.y > selectableAreaOffset.y && | ||
event.position.y < selectableAreaOffset.y + selectableAreaSize.height | ||
} | ||
|
||
private fun getCloseBorders( | ||
event: PointerInputChange, | ||
selectableAreaSize: Size, | ||
selectableAreaOffset: Offset | ||
): Set<BorderType> { | ||
val borders = mutableSetOf<BorderType>() | ||
|
||
if (diffSmallerThanMaxFrameClickDist(event.position.y, selectableAreaOffset.y)) { | ||
borders.add(BorderType.TOP) | ||
} | ||
|
||
if (diffSmallerThanMaxFrameClickDist( | ||
event.position.y, | ||
selectableAreaOffset.y + selectableAreaSize.height | ||
) | ||
) { | ||
borders.add(BorderType.BOTTOM) | ||
} | ||
|
||
if (diffSmallerThanMaxFrameClickDist(event.position.x, selectableAreaOffset.x)) { | ||
borders.add(BorderType.LEFT) | ||
} | ||
|
||
if (diffSmallerThanMaxFrameClickDist( | ||
event.position.x, | ||
selectableAreaOffset.x + selectableAreaSize.width | ||
) | ||
) { | ||
borders.add(BorderType.RIGHT) | ||
} | ||
|
||
return borders | ||
} | ||
|
||
private fun diffSmallerThanMaxFrameClickDist(a: Float, b: Float): Boolean { | ||
return (a - b).absoluteValue < MAX_FRAME_CLICK_DIST | ||
} | ||
|
||
private fun fitImageSizeToDimensions( | ||
bitmap: Bitmap, | ||
maxWidth: Float, | ||
maxHeight: Float | ||
): Pair<Float, Float> { | ||
val imageRatio = bitmap.height.toFloat() / bitmap.width.toFloat() | ||
val boxRatio = maxHeight / maxWidth | ||
return if (imageRatio > boxRatio) { | ||
maxHeight / imageRatio to maxHeight | ||
} else { | ||
maxWidth to maxWidth * imageRatio | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.