We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eec672 commit b162c43Copy full SHA for b162c43
22.py
@@ -0,0 +1,22 @@
1
+from PIL import Image, ImageDraw
2
+
3
4
+def main():
5
+ im, width, height = first_step()
6
+ second_step(im, width, height)
7
8
9
+def first_step():
10
+ im = Image.open("copper/white.gif")
11
+ size = im.size
12
+ width = size[0]
13
+ height = size[1]
14
+ return im, width, height
15
16
17
+def second_step(im, width, height):
18
+ pass
19
20
21
+if __name__ == "__main__":
22
+ main()
copper/white.gif
38.1 KB
0 commit comments