Almouro 125365ec6b Handle images from RCT Image store
On iOS, when cropping an image with ImageEditor, it returns an uri starting with rct-image-store which could not be read by this module
2016-03-17 19:21:03 +01:00

22 lines
515 B
JavaScript

import {
NativeModules,
} from 'react-native';
export default {
createResizedImage: (path, width, height, format, quality) => {
if (format !== 'JPEG') {
throw new Error('Only JPEG format is supported by createResizedImage');
}
return new Promise((resolve, reject) => {
NativeModules.ImageResizer.createResizedImage(path, width, height, quality, (err, resizedPath) => {
if (err) {
return reject(err);
}
resolve(resizedPath);
});
});
},
};