We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Phisical Device: iPhone 13 Pro Max OS: iOS 16.2.7
Project: "react-native": "0.74.3", "@react-native-community/image-editor": "^4.2.0", "expo": "~51.0.23", "react-native-vision-camera": "^4.5.1",
The crop result is outside what was expected
*This code works perfectly in all other devices/emulators and OS versions, for both Android, iOS.
This bug only happen when I got a picture from react native vision camera, when picked with expo-image-picker, it works fine!
The green toast in end of the video is: Original Image Height and Image Width
Image crop area Height and Width Position X and Y above the Image crop area
const handlePress = async () => { try { setTranscriptionLoading(true); const widthRatio = image.width / imageLayout.width; const heightRatio = image.height / imageLayout.height; const cropData: ImageCropData = { offset: { x: cropX.value * widthRatio, y: cropY.value * heightRatio }, size: { width: cropWidth.value * widthRatio, height: cropHeight.value * heightRatio }, resizeMode: "cover", format: "webp", quality: Platform.OS === "ios" ? 0.5 : 0.9, includeBase64: false, }; const croppedImageUri: CropResult = await ImageEditor.cropImage(image.uri, cropData); handleTranscription(croppedImageUri); } catch (error) { console.error("Crop Error", error); Toast.show({ type: "error", text1: "Erro ao processar imagem" }); } };
The text was updated successfully, but these errors were encountered:
Thank you for reporting this problem. This workaround should assist to resolve it, as we have something similar on Android.
Sorry, something went wrong.
No branches or pull requests
Environment
Phisical Device: iPhone 13 Pro Max
OS: iOS 16.2.7
Project:
"react-native": "0.74.3",
"@react-native-community/image-editor": "^4.2.0",
"expo": "~51.0.23",
"react-native-vision-camera": "^4.5.1",
Description
The crop result is outside what was expected
*This code works perfectly in all other devices/emulators and OS versions, for both Android, iOS.
This bug only happen when I got a picture from react native vision camera, when picked with expo-image-picker, it works fine!
The green toast in end of the video is:
Original Image Height and Image Width
Image crop area Height and Width
Position X and Y above the Image crop area
CROP_ERROR.mp4
Reproducible Demo
The text was updated successfully, but these errors were encountered: