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) => {
|
2016-09-12 17:57:49 +00:00
|
|
|
if (format !== 'JPEG' && format !== 'PNG') {
|
|
|
|
throw new Error('Only JPEG and PNG format are supported by createResizedImage');
|
2015-11-29 19:58:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
2017-07-18 21:05:26 +00:00
|
|
|
NativeModules.ImageResizer.createResizedImage(path, width, height, format, quality, rotation, outputPath, (err, response) => {
|
2015-11-29 19:58:58 +00:00
|
|
|
if (err) {
|
|
|
|
return reject(err);
|
|
|
|
}
|
|
|
|
|
2017-07-18 21:05:26 +00:00
|
|
|
resolve(response);
|
2015-11-29 19:58:58 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|