2.0.1 • Published 2 years ago
rn-camera-crop v2.0.1
rn-camera-crop
camera with crop functionality
Installation
npm install rn-camera-cropor
yarn add rn-camera-cropNote
This library depends upon expo. If you're using it on a bare react-native project, please setup expo first.
Afer successfully setting up the expo install the peer dependencies-
expo-cli install expo-camera expo-image-manipulatorUsage
import CameraModule from "rn-camera-crop";
// ...
const onSuccess = (uri: string) => {
// do whatever you want
}
const onError = (error: Error) => {
// do whatever you want
}
<CameraModule
rectType='A4'
enableCrop
enablePreview
onCaptureSuccess={onSuccess}
onCaptureError={onError}/>If you are getting this error Could not find com.google.android:cameraview:1.0.0 while building your project.
Try to add this line-
android/build.gradle at the bottom of allprojects -> repositories
maven { url "$rootDir/../node_modules/expo-camera/android/maven" }
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT