react-native-image-tool
Version:
React Native Image Tool
33 lines (28 loc) • 904 B
JavaScript
import {
NativeModules,
} from 'react-native';
export default {
createBinaryImage: (path, type, threshold, format, quality, bOutputBase64, frontColorString="000000ff", backColorString="ffffffff") => {
if (format !== 'JPEG' && format !== 'PNG') {
throw new Error('Only JPEG and PNG format are supported!');
}
return new Promise((resolve, reject) => {
NativeModules.ImageTools.createBinaryImage(path, type, threshold, format, quality, bOutputBase64, frontColorString, backColorString, (err, response) => {
if (err) {
return reject(err);
}
resolve(response);
});
});
},
GetImageRGBAs: (path) => {
return new Promise((resolve, reject) => {
NativeModules.ImageTools.GetImageRGBAs(path, (err, response) => {
if (err) {
return reject(err);
}
resolve(response);
});
});
},
};