2015-11-29 19:58:58 +00:00
|
|
|
import {
|
|
|
|
NativeModules,
|
|
|
|
} from 'react-native';
|
|
|
|
|
|
|
|
export default {
|
2016-06-30 17:07:42 +00:00
|
|
|
createResizedImage: (path, width, height, format, quality, rotation = 0, outputPath) => {
|
2015-11-29 19:58:58 +00:00
|
|
|
if (format !== 'JPEG') {
|
|
|
|
throw new Error('Only JPEG format is supported by createResizedImage');
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2016-06-30 17:07:42 +00:00
|
|
|
NativeModules.ImageResizer.createResizedImage(path, width, height, quality, outputPath, (err, resizedPath) => {
|
2015-11-29 19:58:58 +00:00
|
|
|
if (err) {
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
resolve(resizedPath);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|