Identicon
Mix.install([
{:kino, "~> 0.12.3"},
{:egd, github: "erlang/egd"}
])
Code
defmodule Image do
defstruct hex: nil, color: nil, grid: nil, pixel_map: nil
end
defmodule Identicon do
def main(input) do
input
|> hash_input
|> pick_color
|> build_grid
|> filter_odd
|> build_pixel_map
|> draw_image
|> save_image(input)
end
def save_image(image, input) do
File.write("#{input}.png", image)
end
def draw_image(%Image{color: color, pixel_map: pixel_map}) do
image = :egd.create(250, 250)
fill = :egd.color(color)
Enum.each(pixel_map, fn {start, stop} ->
:egd.filledRectangle(image, start, stop, fill)
end)
:egd.render(image)
end
def build_pixel_map(%Image{grid: grid} = image) do
pixel_map =
Enum.map(grid, fn {_code, index} ->
horizontal = rem(index, 5) * 50
vertical = div(index, 5) * 50
top_left = {horizontal, vertical}
bottom_right = {horizontal + 50, vertical + 50}
{top_left, bottom_right}
end)
%Image{image | pixel_map: pixel_map}
end
def filter_odd(%Image{grid: grid} = image) do
grid =
Enum.filter(grid, fn {code, _index} ->
rem(code, 2) == 0
end)
%Image{image | grid: grid}
end
def build_grid(%Image{hex: hex} = image) do
grid =
hex
|> Enum.chunk_every(3, 3, :discard)
|> Enum.map(&mirror_row/1)
|> List.flatten()
|> Enum.with_index()
%Image{image | grid: grid}
end
def mirror_row(row) do
[first, second | _tail] = row
row ++ [second, first]
end
def pick_color(%Image{hex: [r, g, b | _tail]} = image) do
%Image{image | color: {r, g, b}}
end
def hash_input(input) do
hex =
:crypto.hash(:md5, input)
|> :binary.bin_to_list()
%Image{hex: hex}
end
end
text = "1-bit-wonder"
Identicon.main(text)
content = File.read!(text <> ".png")
Kino.Image.new(content, "image/jpeg")