-
Notifications
You must be signed in to change notification settings - Fork 8
/
ios-stickersicon-exporter.jsx
83 lines (82 loc) · 1.55 KB
/
ios-stickersicon-exporter.jsx
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
PLATFORM = "ios"
ICONS = [
"iphone_29@2x",
"iphone_29@3x",
"iphone_60x45@2x",
"iphone_60x45@3x",
"ipad_29@2x",
"ipad_67x50@2x",
"ipad_74x55@2x",
"universal_27x20@2x",
"universal_27x20@3x",
"universal_32x24@2x",
"universal_32x24@3x",
"ios-marketing_1024@1x",
"ios-marketing_1024x768@1x"
];
#include "icon-exporter.jsx"
/*
[
{
"size" : "60x45",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "60x45",
"idiom" : "iphone",
"filename" : "[email protected]",
"scale" : "3x"
},
{
"size" : "67x50",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "74x55",
"idiom" : "ipad",
"filename" : "[email protected]",
"scale" : "2x"
},
{
"size" : "27x20",
"idiom" : "universal",
"filename" : "[email protected]",
"scale" : "2x",
"platform" : "ios"
},
{
"size" : "27x20",
"idiom" : "universal",
"filename" : "[email protected]",
"scale" : "3x",
"platform" : "ios"
},
{
"size" : "32x24",
"idiom" : "universal",
"filename" : "[email protected]",
"scale" : "2x",
"platform" : "ios"
},
{
"size" : "32x24",
"idiom" : "universal",
"filename" : "[email protected]",
"scale" : "3x",
"platform" : "ios"
},
{
"size" : "1024x768",
"idiom" : "universal",
"filename" : "icon_1024x768.png",
"scale" : "1x",
"platform" : "ios"
}
].map(function (i,e) {
console.log('"'+i['idiom']+'_'+i['size']+'@'+i['scale']+'",')
});
*/