Is there any conventional way to turn an arbitrary string into an image?
In my use case, lets say I want to have an image for each user that maps directly to that user's name.
The concept is similar to QR codes, except the output image is not designed to be readable, simple pretty and consistent.
ultimately i want something like:
def to_image(a_string)
... #magic
return a_data_uri
end
such that
# is always true
to_image("specific string") == to_image("specific string")
Ideally you'd end up with some nice looking fractal-art like image.
If what I'm describing is nonsensical, a function that can convert a string to a data-uri containing a qr code will do.