Skip to content

Commit d0d4ceb

Browse files
committed
rendered mcc
1 parent 54c1ff0 commit d0d4ceb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Image-Dict/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
width, height = selected_image.size
66
output_file = open("output.txt", "a")
77
output_file.write("[")
8-
for row in range(0, height, 4):
9-
for column in range(0, width, 4):
8+
for row in range(0, height, 1):
9+
for column in range(0, width, 1):
1010
red, green, blue, alpha = pix[column, row]
1111
print (str(red) + " " + str(green) + " " + str(blue))
1212

0 commit comments

Comments
 (0)