There was a time where I
in my paces travelled
to where your words
would be born
All my robes
sweat drenched and unravelled
sand scrapped in the sun
they were torn
When I saw you, you said
my mouth filled with bread
didn't know how to thank
the grain
The story still holds
my heart filled with gold
couldn't do more than
let out a "clink"
How can a heart
that was made to love
not know love
in a new form
How could an eye
be so old
and not let a new sight
into the fold
""" ascii heart
import os, sys
import Image
im = Image.open("heart.png")
x,y = im.size
x = x
y = y
pix = im.load()
print(pix[0,0])
word = "__"
sk = 18
count = 0
total = 0
index = 0
for n in range(0,y,sk):
for m in range(0,x,sk//2):
if pix[m,n][0] + pix[m,n][1] + pix[m,n][2] + pix[m,n][3] < 1020:
print(word[count%len(word)], end ="")
count += 1
total += 1
else:
print(" ", end ="")
total += 1
print("")
print("quality = " + str(count*(3/sk)/total))