🎨

QR Code Generator

Created
TagsBrandUI/UX
LinkAdd your link here →
💡
Here's the basic HTML code you can use to input any link and generate a QR code for it. This code serves as the backbone of our QR Code Generator tool. By simply replacing a specific part of the code with your desired URL, a QR code will be automatically created.

The Idea


The Process (Under Development)


The development of the QR Code Generator began with the creation of the basic HTML code. We then implemented additional features to enhance its functionality and user experience. This included options for customization, such as changing the color or size of the QR code, and adding a logo if desired.

The Design


The user interface of the QR Code Generator was carefully designed to be intuitive and straightforward, ensuring that even those with little to no experience in code generation can use the tool with ease. The design also focuses on providing a clean and uncluttered workspace, allowing users to concentrate on their task without distraction.

The idea

Our QR Code Generator was conceived with the intention of simplifying the process of QR code creation. We wanted to create a tool that was both easy to use and efficient, saving you the time and effort typically required for this task.


To start, we need to install the two libraries:

To install qrcode and pillow, run this command inside the VS Code terminal:

pip install qrcode pillow

import qrcode
website_link = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'
qr = qrcode.QRCode(version = 1, box_size = 10, border = 5)
qr.add_data(website_link)
qr.make()
img = qr.make_image(fill_color = 'black', back_color = 'white')
img.save('youtube_qr.png')