react-native-photo-editor ReactNative: Native Photo Editor (Android/iOS)
This library is a React Native bridge around native photo editor libraries. It allows you to edit any photo by providing below set of features:
$ npm install react-native-photo-editor --save
$ react-native link react-native-photo-editor
buildscript {
repositories {
jcenter()
maven { url "https://maven.google.com" }
maven { url "https://jitpack.io" }
...
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
maven { url "https://maven.google.com" }
maven { url "https://jitpack.io" }
...
}
}
android {
...
defaultConfig {
...
renderscriptSupportModeEnabled true
}
}
<activity android:name="com.ahmedadeltito.photoeditor.PhotoEditorActivity" />
Note: Android SDK 27 > is supported
iOS
iOS Prerequisite: Please make sure CocoaPods is installed on your system
react-native link react-native-photo-editor
, please verify node_modules/react-native-photo-editor/ios/
contains Pods
folder. If does not exist please execute pod install
command on node_modules/react-native-photo-editor/ios/
, if any error => try pod repo update
then pod install
node_modules/react-native-photo-editor/ios/pods/Pods.xcodeproject
into RNPhotoEditor, as well as the RNPhotoEditor.xcodeproject if it does not exist.iOSPhotoEditor.framework
into your project’s Embedded Binaries
and make sure the framework is also in linked libraries.Build Settings -> Frameworks Search Path
and add ${BUILT_PRODUCTS_DIR}/iOSPhotoEditor
non-recursive. <key>NSPhotoLibraryAddUsageDescription</key>
<string>Application needs permission to write photos...</string>
import { RNPhotoEditor } from 'react-native-photo-editor'
RNPhotoEditor.Edit({
path: RNFS.DocumentDirectoryPath + "/photo.jpg"
});
Prop | Type | Default | Note |
---|---|---|---|
path: mandatory |
string |
Specify image path you want to edit | |
hiddenControls |
array |
Specify editor controls you want to hide [clear, crop, draw, save, share, sticker, text] |
|
stickers |
array |
Specify stickers you want to show in stickers picker | |
colors |
array: HEX-COLOR |
[#000000, #808080, #a9a9a9, #FFFFFF, #0000ff, #00ff00, #ff0000, #ffff00, #ffa500, #800080, #00ffff, #a52a2a, #ff00ff] |
Specify colors you want to show for draw/text |
onDone |
func |
Specify done callback | |
onCancel |
func |
Specify cancel callback |
If you want to add custom stickers, please add them to your native project:
drawable
folderAuthor: prscX
GitHub: https://github.com/prscX/react-native-photo-editor
#react-native #reactjs #programming