Browse Source

Changed test.png to multicolor image, changed code slightly

master
Noëlle Anthony 5 years ago
parent
commit
814ab5efbc
2 changed files with 2 additions and 4 deletions
  1. 2
    4
      stitchify.py
  2. BIN
      test.png

+ 2
- 4
stitchify.py View File

for j in range(w): for j in range(w):
c = "".join(["{}{}".format(hex(x//16).split('x')[-1], hex(x%16).split('x')[-1]) for x in list(img.getpixel((j,i)))]) c = "".join(["{}{}".format(hex(x//16).split('x')[-1], hex(x%16).split('x')[-1]) for x in list(img.getpixel((j,i)))])
d = " " d = " "
if c in symbols.keys():
d = symbols[c]
else:
if c not in symbols.keys():
symbols[c] = characters[0] symbols[c] = characters[0]
characters = characters[1:] characters = characters[1:]
d = symbols[c]
d = symbols[c]
print(d, end="") print(d, end="")
print() print()

BIN
test.png View File


Loading…
Cancel
Save