Skip to content

Instantly share code, notes, and snippets.

@ryuone
Created August 15, 2013 09:23
Show Gist options
  • Save ryuone/6239532 to your computer and use it in GitHub Desktop.
Save ryuone/6239532 to your computer and use it in GitHub Desktop.
url = "http://www.yahoo.co.jp/"
qrcode = :qrcode.encode(url)
{:ok, fd} = :file.open('./yahoo.qr.png', [:write, :raw, :binary])
:file.write(fd, :qrcode_demo.simple_png_encode(qrcode))
:file.sync(fd)
:file.close(fd)
@ryuone
Copy link
Author

ryuone commented Aug 15, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment