Colorful QR Code in python
Hello Ji, tech enthusiasts! Excited to share a quick Python project with you all: generating vibrant QR codes with a splash of color. QR codes have become essential in our digital lives, simplifying access to websites, contact info, and more. Let's dive into the code:
pythimport qrcode
qr =
qr = qrcode.QRCode(
version=1,
error_correction=qrcode.constants.ERROR_CORRECT_H,
box_size=10,
border=4
)qr.add_data("https://www.linkedin.com/in/arunjakhmola/")
qr.make(fit=True)img = qr.make_image(fill_color="yellow", back_color="black")
img.save("color_qrcode.png")
This concise script utilizes the qrcode
library to generate a QR code linked to my LinkedIn profile. What makes it special is the ability to customize colors. In this example, I chose bold yellow against a sleek black background. Experiment with colors, data, and sizes to suit your needs.
Scan this and see you on the other side
Happy coding!
Comments
Post a Comment