|
| 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!') |
0 commit comments