forked from bamlab/react-native-image-resizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
100 lines (89 loc) · 2.32 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { NativeModules, Platform } from 'react-native';
const ImageResizerAndroid = NativeModules.ImageResizerAndroid;
let exportObject = {};
/** Validate `options` object: used by both Android and iOS entry points */
function validateOptions(options) {
const mode = options.mode || 'contain';
const possibleModes = ['contain', 'cover', 'stretch'];
if (possibleModes.indexOf(mode) === -1) {
throw new Error(`createResizedImage's options.mode must be one of "${possibleModes.join('", "')}"`);
}
if (options.onlyScaleDown && typeof options.onlyScaleDown !== 'boolean') {
throw new Error(`createResizedImage\'s option.onlyScaleDown must be a boolean: got ${options.onlyScaleDown}`);
}
return {
mode,
onlyScaleDown: !!options.onlyScaleDown,
};
}
if (Platform.OS === 'android') {
exportObject = {
createResizedImage: (
imagePath,
newWidth,
newHeight,
compressFormat,
quality,
rotation = 0,
outputPath,
keepMeta = false,
options = {}
) => {
const validatedOptions = validateOptions(options);
return new Promise((resolve, reject) => {
ImageResizerAndroid.createResizedImage(
imagePath,
newWidth,
newHeight,
compressFormat,
quality,
rotation,
outputPath,
keepMeta,
validatedOptions,
resolve,
reject
);
});
},
};
} else {
exportObject = {
createResizedImage: (
path,
width,
height,
format,
quality,
rotation = 0,
outputPath,
keepMeta = false,
options = {}
) => {
if (format !== 'JPEG' && format !== 'PNG') {
throw new Error('Only JPEG and PNG format are supported by createResizedImage');
}
const validatedOptions = validateOptions(options);
return new Promise((resolve, reject) => {
NativeModules.ImageResizer.createResizedImage(
path,
width,
height,
format,
quality,
rotation,
outputPath,
keepMeta,
validatedOptions,
(err, response) => {
if (err) {
return reject(err);
}
resolve(response);
}
);
});
},
};
}
export default exportObject;