react-native-image-resizer/README.md

53 lines
2.3 KiB
Markdown
Raw Normal View History

2015-12-02 22:06:16 +00:00
# React Native Image Resizer
2015-12-02 21:53:06 +00:00
2015-12-02 22:06:16 +00:00
A React Native module that can create scaled versions of local images (also supports the assets library on iOS).
2015-12-02 21:53:06 +00:00
2015-12-02 22:06:16 +00:00
## Setup
2016-08-05 12:56:54 +00:00
Install the package with [rnpm](https://github.com/rnpm/rnpm):
2016-05-16 10:31:57 +00:00
```
npm install rnpm -g
2016-08-05 12:56:54 +00:00
rnpm install react-native-image-resizer
2015-12-02 22:06:16 +00:00
```
Note: on latest versions of React Native, you may have an error during the Gradle build on Android (`com.android.dex.DexException: Multiple dex files define Landroid/support/v7/appcompat/R$anim`). Run `cd android && ./gradlew clean` to fix this.
2015-12-02 22:06:16 +00:00
## Usage example
```javascript
2016-03-09 13:30:54 +00:00
import ImageResizer from 'react-native-image-resizer';
2015-12-02 22:06:16 +00:00
ImageResizer.createResizedImage(imageUri, newWidth, newHeight, compressFormat, quality, rotation, outputPath).then((resizedImageUri) => {
2015-12-02 22:06:16 +00:00
// resizeImageUri is the URI of the new image that can now be displayed, uploaded...
2016-05-16 11:06:14 +00:00
}).catch((err) => {
// Oops, something went wrong. Check that the filename is correct and
// inspect err to get more details.
2015-12-02 22:06:16 +00:00
});
```
2016-05-16 11:06:14 +00:00
### Sample app
A basic, sample app is available in [the `example` folder](https://github.com/bamlab/react-native-image-resizer/tree/master/example). It uses the module to resize a photo from the Camera Roll.
2015-12-02 22:06:16 +00:00
## API
### `promise createResizedImage(path, maxWidth, maxHeight, compressFormat, quality, rotation = 0, outputPath)`
2015-12-02 22:06:16 +00:00
The promise resolves with a string containing the uri of the new file.
Option | Description
------ | -----------
path | Path of image
maxWidth | Image max width (ratio is preserved)
maxHeight | Image max height (ratio is preserved)
compressFormat | Can be either JPEG, PNG (android only) or WEBP (android only).
quality | A number between 0 and 100. Used for the JPEG compression.
rotation | Rotation to apply to the image, in degrees, for android only. On iOS, the resizing is done such that the orientation is always up.
outputPath | The resized image path. If null, resized image will be stored in cache folder. To set outputPath make sure to add option for rotation too (if no rotation is needed, just set it to 0).
## Other open-source modules by the folks at [BAM](http://github.com/bamlab)
* [rn-camera-roll](https://github.com/bamlab/rn-camera-roll)
* [react-native-animated-picker](https://github.com/bamlab/react-native-animated-picker)
* [cordova-plugin-native-routing](https://github.com/bamlab/cordova-plugin-native-routing)