資源簡介
python實現web開發,網址生成二維碼demo

代碼片段和文件信息
#?-*-?coding:utf-8?-*-
#開發微信二維碼通訊錄系統
#知識點:二維碼生成奇數,圖片合成,圖片處理,web前后端交互
import?sys
import?web
import?qrcode
import?PIL.Image?as?Image
import?time
#生成二維碼函數,傳入信息參數
def?qc(info):
????#創建qrcode對象
????qr=qrcode.QRCode(
????????version=1
????????error_correction=qrcode.constants.ERROR_CORRECT_Q
????????box_size=10
????????border=4
????????)
????#version為一個整數,范圍1~40,作用表示二維碼的大小
????#error_correction容錯率,擋出部分二維碼還能識別,越高可以擋住部分越多,但數據量增加
????#四個等級:HLMQ??Q最高,可以擋住25%
????#box_size?每個格子里像素大小
????#border?表示二維碼距離圖像外邊框的距離
????qr.add_data(info[‘url‘])
????img=qr.make_image()#創建二維碼圖片
????img=img.convert(“RGBA“)#圖片轉換為RGBA格式
????img_wimg_h=img.size?#返回二維碼圖片的大小
????logo=Image.open(“static/images/logo1.png“)#打開logo
????logo_w=int(img_w/4)
????logo_h=int(img_h/4)
????logo=logo.resize((logo_wlogo_h)Image.ANTIALIAS)#改變大小抗鋸齒
????w=int((img_w-logo_w)/2)
????h=int((img_h-logo_h)/2)
????img.paste(logo?(w?h))
????path=“static/imgcard/%s.png“?%time.time()
????img.save(path)#保存圖片
????return?path
????
urls=(‘/‘‘Index‘)#‘/‘為路徑,index為類名
render=web.template.render(‘templates‘)#讀取文件夾下的html代碼
class?Index:????#頁面處理類
????def?GET(self):
????????return?render.index()
????def?POST(self):#返回二維碼圖片地址
????????i=web.input()#獲取用戶請求的參數和值
????????return?qc(i)
if?__name__==‘__main__‘:
????#globals?函數返回一個全局變量的字典,包括所有導入的變量。
????web.application(urlsglobals()).run()
????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-12-09?14:14??qrcode\
?????文件????????1910??2016-12-09?14:26??qrcode\QRcode.py
?????文件????????1823??2016-12-09?14:14??qrcode\QRcode.pyc
?????目錄???????????0??2016-12-09?14:10??qrcode\static\
?????目錄???????????0??2016-12-08?20:44??qrcode\static\css\
?????文件???????62566??2015-07-14?20:36??qrcode\static\css\animate.css
?????目錄???????????0??2016-12-09?14:22??qrcode\static\images\
?????文件??????179808??2016-12-09?11:48??qrcode\static\images\logo1.png
?????目錄???????????0??2016-12-09?14:23??qrcode\static\imgcard\
?????文件????????9684??2016-12-09?14:14??qrcode\static\imgcard\1481264065.19.png
?????文件???????17639??2016-12-09?14:14??qrcode\static\imgcard\1481264075.06.png
?????文件???????20540??2016-12-09?14:15??qrcode\static\imgcard\1481264129.53.png
?????文件???????17639??2016-12-09?14:17??qrcode\static\imgcard\1481264249.11.png
?????文件???????20540??2016-12-09?14:22??qrcode\static\imgcard\1481264521.39.png
?????文件???????17639??2016-12-09?14:23??qrcode\static\imgcard\1481264620.86.png
?????文件???????17639??2016-12-09?14:23??qrcode\static\imgcard\1481264628.1.png
?????目錄???????????0??2016-12-08?20:44??qrcode\static\js\
?????文件???????93068??2015-04-02?14:41??qrcode\static\js\jquery.min.js
?????目錄???????????0??2016-12-08?21:33??qrcode\templates\
?????文件????????3162??2016-12-09?14:21??qrcode\templates\index.html
評論
共有 條評論