Python使用QRCode產生二維碼

來源:互聯網
上載者:User

標籤:

PIL和QRCode:

http://www.pythonware.com/products/pil/https://pypi.python.org/pypi/qrcode/5.1#你可能需要的setuptools:https://pypi.python.org/pypi/setuptools/

 

參考文檔:

http://www.cnblogs.com/linjiqin/p/4140455.htmlhttp://www.cnblogs.com/ryuham/p/4455954.html

 

程式碼範例:

#-*- coding:utf8 -*-import qrcodeimport PILif __name__ == ‘__main__‘:    blog_url = ‘http://www.cnblogs.com/lichmama‘    #初始化二維碼產生器    code_maker = qrcode.QRCode(error_correction=qrcode.constants.ERROR_CORRECT_H)    #填入在二維碼中儲存的資料    code_maker.add_data(blog_url)    code_maker.make(fit=True)        code_image = code_maker.make_image()    code_image = code_image.convert(‘RGBA‘)    face_image = PIL.Image.open(r‘lichmama.png‘)    code_width, code_height = code_image.size    face_image = face_image.resize((100,100), PIL.Image.ANTIALIAS)    #將頭像嵌入二維碼當中    code_image.paste(face_image, ((code_width-100)/2, (code_height-100)/2))    code_image.save(r‘qrcode.png‘)

 

產生圖片:

Python使用QRCode產生二維碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.