Created
July 12, 2023 15:19
-
-
Save inscapist/1c60823ef2895cc4d066c91a529bfa2e to your computer and use it in GitHub Desktop.
QR code generator using Nim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QRgen | |
import QRgen/renderer | |
import pkg/[pixie] | |
import os | |
# Create a new QR code | |
let qr = newQR("https://github.com/aruZeta/QRgen", ecLevel=qrECH) | |
# Generate the QR code | |
# https://github.com/aruZeta/QRgen/blob/48231c7afacb54b88968c4bc84f51f6093333b8a/src/QRgen/renderer.nim#L42 | |
# first number is alignment roundness (the 3 circles/squares) | |
# second number is module roundness (the "dots") | |
# third number is module separation (the distance/density of dots), should be 25 at most | |
let image = qr.renderImg("#1d2021","#98971a",50,50,25, pixels=3000, img=readImage("mbsa.png")) | |
writeFile(image, "qr.png") |
Author
inscapist
commented
Jul 12, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment