react-native-export-asset

1.0.0 • Public • Published

a react-native plugin for compress photo or video

install

npm install react-native-export-asset --save
link dependency:
react-native link react-native-export-asset

usage

import { NativeModules } from 'react-native';  
// compress photo  
const compressOptions = {maxWidth: 1024, maxHeight: 1024, quality: 0.8};
NativeModules.AssetExport.exportPhoto(Object.assign({file}, compressOptions), (path, code) => {
    if(code > 0){
        console.log(path);// the path is the compressed photo path
    }
    else{
        this.onFailed && this.onFailed(path);
    }
});  
// compress video  
NativeModules.AssetExport.exportVideo(this.props.video, {width, height} ,uri => {
    if(uri.startsWith('file://'))
        uri = uri.substring(7);
    console.log(uri);// the uri is the compressed video path
});

Readme

Keywords

Package Sidebar

Install

npm i react-native-export-asset

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • flare216