-
Notifications
You must be signed in to change notification settings - Fork 5
/
image-gen-config.json
62 lines (62 loc) · 1.32 KB
/
image-gen-config.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
53
54
55
56
57
58
59
60
61
62
{
"Paths": [
{
"Path": "./images/",
"Destination": "./static/gen/images",
"Ignore": "./images/committee",
"Recursive": true,
"Resize": [
{
"Algorithm": "Box",
"Suffix": "-large",
"Width": 960,
"Height": 960,
"KeepAspectRatio": true
},
{
"Algorithm": "Box",
"Suffix": "-medium",
"Width": 480,
"Height": 480,
"KeepAspectRatio": true
},
{
"Algorithm": "Box",
"Suffix": "-small",
"Width": 320,
"Height": 320,
"KeepAspectRatio": true
}
]
},
{
"Path": "./images/committee",
"Destination": "./static/gen/images/committee",
"Ignore": "",
"Recursive": true,
"Resize": [
{
"Algorithm": "Box",
"Suffix": "-large",
"Width": 960,
"Height": 960,
"KeepAspectRatio": true
},
{
"Algorithm": "Box",
"Suffix": "-medium",
"Width": 480,
"Height": 480,
"KeepAspectRatio": true
},
{
"Algorithm": "Box",
"Suffix": "-small",
"Width": 320,
"Height": 320,
"KeepAspectRatio": true
}
]
}
]
}