forked from danielVebman/iOS-Related
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppIconMaker.py
180 lines (168 loc) · 3.81 KB
/
AppIconMaker.py
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
"""
This can be run as is. It generates the complete "AppIcon.appiconset" folder.
After this program finishes running, simply drag this folder into your project directory.
Make sure to remove the old one (with the same name––"AppIcon.appiconset").
The folder will be created in the directory of the image that you use.
"""
import PIL
import sys
import os
import shutil
from PIL import Image
print("A png of size 1024x1024 would be ideal.")
image_loc = raw_input("Image location: ").replace(" ", "")
image = PIL.Image.open(image_loc)
w, h = image.size
croppedImage = image.crop((0, 0, min(w, h), min(w, h)))
filenames = [
"iphone-20-2x.png",
"iphone-20-3x.png",
"iphone-29-2x.png",
"iphone-29-3x.png",
"iphone-40-2x.png",
"iphone-40-3x.png",
"iphone-60-2x.png",
"iphone-60-3x.png",
"ipad-20-1x.png",
"ipad-20-2x.png",
"ipad-29-1x.png",
"ipad-29-2x.png",
"ipad-40-1x.png",
"ipad-40-2x.png",
"ipad-76-1x.png",
"ipad-76-2x.png",
"ipad-83.5-2x.png"
]
data = [filename[:-4].split("-")[1:] for filename in filenames]
dir = os.path.dirname(image_loc)
folder = dir + "/AppIcon.appiconset/"
if os.path.exists(folder):
if raw_input(folder + " already seems to exist. Remove it and procede? y/n ") == "y":
shutil.rmtree(folder)
else:
sys.exit()
os.makedirs(folder)
print("Folder created at " + folder)
for n in range(len(data)):
d = data[n]
length = int(float(d[0]) * int(d[1].replace("x", "")))
resizedImage = image.resize((length, length), PIL.Image.ANTIALIAS)
resizedImage.save(folder + "/" + filenames[n])
print("Saved " + filenames[n])
contents = """
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "iphone-20-2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "iphone-20-3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "iphone-29-2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "iphone-29-3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "iphone-40-2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "iphone-40-3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "iphone-60-2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "iphone-60-3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "ipad-20-1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "ipad-20-2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "ipad-29-1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "ipad-29-2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "ipad-40-1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "ipad-40-2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "ipad-76-1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "ipad-76-2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "ipad-83.5-2x.png",
"scale" : "2x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
"""
file = open(folder + "Contents.json", "a")
file.write(contents)
file.close()
print("Saved Contents.json")
print("Wrote 28 files in 1 directory")