二维码—生活中广泛使用。
二维码—用Python生成。
生成二维码的第三方库—qrcode库和PIL库。
#生成带logo的二维码(logo在中心)
import qrcode
from PIL import Image
info = "https://www.buu.edu.cn"
pic_path = "buuqr.png"
logo_path = "buulogo.png"
qr = qrcode.QRCode(
version=2, #25*25
error_correction=qrcode.constants.ERROR_CORRECT_H,
box_size=8,
border=1
)
qr.add_data(info)
qr.make(fit=True)
img = qr.make_image()
img = img.convert("RGBA")
icon = Image.open(logo_path)
icon = icon.convert("RGBA")
#logo大小调整为二维码图片大小的1/16
img_w, img_h = img.size
factor = 4
icon_w = int(img_w / factor)
icon_h = int(img_h / factor)
#ANTIALIAS高质量
icon = icon.resize((icon_w, icon_h), Image.ANTIALIAS)
#确定logo左上角的坐标
x = int((img_w - icon_w) / 2)
y = int((img_h - icon_h) / 2)
#添加logo
icon = icon.convert("RGBA")
img.paste(icon, (x, y))
#保存
img.save(pic_path)