加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
网址转二维码.py 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2022-06-14 16:32 . 添加:网址转二维码.py
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 14 16:05:08 2022
@author: fengmingshan
"""
# 1.将urlz直接生成二维码 最简单的示例
import qrcode
img=qrcode.make("http://61.166.128.245:9001/#/GovernmentForm")
img.save(r"C:\Users\fengmingshan\Desktop\商机沙盘采集.png")
# 2.通过qrcode的一些配置项来更改生成二维码的样式,比如宽度、大小、容错系数
import qrcode
#设置二维码的大小
qr = qrcode.QRCode(
version=2,
error_correction=qrcode.constants.ERROR_CORRECT_L,
box_size=10,
border=1
)
qr.add_data("http://61.166.128.245:9001/#/GovernmentForm")
qr.make(fit=True)
img = qr.make_image()
img.save(r"C:\Users\fengmingshan\Desktop\商机沙盘采集2.png")
import qrcode
from PIL import Image
url="http://61.166.128.245:9001/#/GovernmentForm"
qr=qrcode.QRCode(
version=2,
error_correction=qrcode.constants.ERROR_CORRECT_L,
box_size=10,
border=1
)
qr.add_data(url)
qr.make(fit=True)
img=qr.make_image()
img=img.convert("RGBA")
icon=Image.open(r"C:\Users\fengmingshan\Desktop\cloud.png").convert("RGBA")
img_w,img_h=img.size
factor=4
size_w=int(img_w/factor)
size_h=int(img_h/factor)
icon_w,icon_h=icon.size
if icon_w>size_w:
icon_w=size_w
if icon_h>size_h:
icon_h=size_h
icon=icon.resize((icon_w,icon_h),Image.ANTIALIAS)
w=int((img_w-icon_w)/2)
h=int((img_h-icon_h)/2)
img.paste(icon,(w,h),icon)
img.save(r"C:\Users\fengmingshan\Desktop\商机沙盘采集3.png")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化