-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample-1.json
52 lines (52 loc) · 1.41 KB
/
example-1.json
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
{
"input_url": "../examples/images/image-1.jpg",
"correct_rotation":true,
"operations": [
{
"type": "resize",
"params": {
"width": 230,
"height": 2000,
"type": "width",
"preserve_meta": false,
"pre_filter": true,
"sharpen_amount": 100,
"sharpen_radius": 0.5,
"quality": 85,
"output_url": "../examples/image-1-230.jpg"
}
},
{
"type": "resize",
"params": {
"width": 640,
"height": 2000,
"type": "width",
"preserve_meta": false,
"sharpen_amount": 100,
"sharpen_radius": 0.6,
"quality": 75,
"output_url": "../examples/image-1-640.jpg"
}
},
{
"type": "resize",
"params": {
"width": 800,
"height": 1000,
"type": "width",
"preserve_meta": true,
"sharpen_amount": 100,
"sharpen_radius": 0.6,
"quality": 75,
"output_url": "../examples/image-1-800.jpg"
}
},
{
"type": "read_meta",
"params": {
"info": true
}
}
]
}