Skip to content

Commit 2bda3b5

Browse files
Created QR with custom logo
1 parent 1d888f8 commit 2bda3b5

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

qr_with_logo/README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# QR Code Generator with Logo
2+
3+
## Description
4+
This Python script generates a QR code with a specified URL and overlays a logo onto it. It utilizes the `qrcode` library to generate the QR code and the `PIL` library for image processing to overlay the logo.
5+
6+
## Prerequisites
7+
- `qrcode` library: You can install it via pip with the command `pip install qrcode`.
8+
- `PIL` library: You can install it via pip with the command `pip install pillow`.
9+
10+
## How to Run the Script
11+
1. Ensure you have installed the required libraries mentioned above.
12+
2. Replace the `logo_path` and `url` variables with your desired logo path and target URL, respectively.
13+
3. Run the script.
14+
4. The script will generate a QR code image named `qr_with_logo.png` in the current directory.
15+
16+
## Sample Use
17+
![QR Code with Logo](qr_with_logo.png)
18+
19+
## Author
20+
Shashank Reddy (GitHub: shashank-amireddy)

qr_with_logo/github-logo.png

169 KB
Loading

qr_with_logo/qr.py

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
import qrcode
2+
from PIL import Image
3+
4+
5+
#import requests
6+
7+
# Load the logo image
8+
# Logo_link = 'https://cdn.pixabay.com/photo/2022/01/30/13/33/github-6980894_1280.png'
9+
# logo_response = requests.get(Logo_link, stream=True)
10+
# logo_response.raise_for_status() # Raise an exception for HTTP errors
11+
# logo_img = Image.open(logo_response.raw)
12+
13+
'''
14+
if you want to take an image which is already hosted on web comment lines 18,19 and use the above method
15+
'''
16+
17+
# Path to the logo image file on user's machine
18+
logo_path = "github-logo.png"
19+
logo_img = Image.open(logo_path)
20+
21+
url = 'https://github.com/shashank-amireddy'
22+
23+
# Ensure the logo has an alpha channel (transparency)
24+
logo_img = logo_img.convert("RGBA")
25+
26+
# Resize the logo to fit within the QR code
27+
basewidth = 100
28+
wpercent = basewidth / float(logo_img.size[0])
29+
hsize = int(float(logo_img.size[1]) * float(wpercent))
30+
logo_img = logo_img.resize((basewidth, hsize), Image.LANCZOS)
31+
32+
# Generate QR code
33+
QRcode = qrcode.QRCode(
34+
error_correction=qrcode.constants.ERROR_CORRECT_H
35+
)
36+
QRcode.add_data(url)
37+
QRcode.make()
38+
39+
# Create QR code image with a mode that supports color
40+
QRimg = QRcode.make_image(fill_color="black", back_color="white").convert("RGBA")
41+
42+
# Calculate position to paste the logo
43+
logo_position = (
44+
(QRimg.size[0] - logo_img.size[0]) // 2,
45+
(QRimg.size[1] - logo_img.size[1]) // 2
46+
)
47+
48+
# Paste the logo onto the QR code
49+
QRimg.paste(logo_img, logo_position, logo_img)
50+
51+
# Save the final QR code image
52+
QRimg.save('qr_with_logo.png')
53+
print('QR code generated!')

qr_with_logo/qr_with_logo.png

14.5 KB
Loading

0 commit comments

Comments
 (0)