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 54c1ff0 commit d0d4cebCopy full SHA for d0d4ceb
Image-Dict/convert.py
@@ -5,8 +5,8 @@
5
width, height = selected_image.size
6
output_file = open("output.txt", "a")
7
output_file.write("[")
8
-for row in range(0, height, 4):
9
- for column in range(0, width, 4):
+for row in range(0, height, 1):
+ for column in range(0, width, 1):
10
red, green, blue, alpha = pix[column, row]
11
print (str(red) + " " + str(green) + " " + str(blue))
12
0 commit comments