You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to create QR codes with a logo/image embedded in them. Either we need to modify this wrapper, modify the actual QR code library python-qrcode, or we may need to post process the QR code files.
The text was updated successfully, but these errors were encountered:
I found a comment online showing how to do this from the commandline (ImageMagick):
Using this for bitcoin private key overlays. I did some (image)magick, and came up with this:
# Generate some valid bitcoin private keys
# Then, put them into qrencode:
qrencode -o /tmp/test.png -s 50 -l H -m 6 Shv3ceecGvTCc3to7YMr8M
# Overlay images:
composite coin.png test.png cointest.png
It would be nice to create QR codes with a logo/image embedded in them. Either we need to modify this wrapper, modify the actual QR code library python-qrcode, or we may need to post process the QR code files.
The text was updated successfully, but these errors were encountered: