vivid_png/lib/vivid/png/frame.ex
2017-01-12 08:40:31 +13:00

9 lines
No EOL
172 B
Elixir

defimpl Vivid.PNG, for: Vivid.Frame do
alias Vivid.{PNG, Frame}
def to_png(frame, file) do
frame
|> Frame.buffer(:horizontal)
|> PNG.to_png(file)
end
end