1.0.2 • Published 7 years ago
react-native-image-annotation v1.0.2
react-native-image-annotation
Getting started
$ npm install react-native-image-annotation --save
Mostly automatic installation
$ react-native link react-native-image-annotation
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-image-annotationand addRNImageAnnotation.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNImageAnnotation.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNImageAnnotationPackage;to the imports at the top of the file - Add
new RNImageAnnotationPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-image-annotation' project(':react-native-image-annotation').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-annotation/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-image-annotation')
Usage
Images are represented in the inputs and outputs as base64 encoded strings.
import RNImageAnnotation from 'react-native-image-annotation';
RNImageAnnotation.annotate(inputImage,
textToAdd,
configObject)
.then(outputImage => {
// do something
})1.0.2
7 years ago
1.0.1
7 years ago
1.0.0
7 years ago
0.0.19
8 years ago
0.0.18
8 years ago
0.0.17
8 years ago
0.0.16
8 years ago
0.0.15
8 years ago
0.0.14
8 years ago
0.0.13
8 years ago
0.0.12
8 years ago
0.0.11
8 years ago
0.0.10
8 years ago
0.0.9
8 years ago
0.0.8
8 years ago
0.0.7
8 years ago
0.0.6
8 years ago
0.0.5
8 years ago
0.0.4
8 years ago
0.0.3
8 years ago
0.0.2
8 years ago
0.0.1
8 years ago