教学案例 ——Python生成二维码
当前位置:首页 > 技术交流
教学案例 ——Python生成二维码

中中

2022/7/12 0:00:00

二维码生活中广泛使用。       

二维码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)

还可以输入200个字

蝈蝈派【海南省教改项目(Hnjg2022-80)支持】 网站版权所有

Python remained the copyright of our website

吉公网安备 22020402000437号

备案号:吉ICP备2020005062号-2

关注QQ群

了解Python

实时动态