Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to generate a QR code by Pythonqrcode

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail how to generate a QR code for Pythonqrcode. The editor thinks it is very practical, so I share it for you as a reference. I hope you can get something after reading this article.

The picture of QR code is generated by pillow.

Installation of qrcode

Enter on the command line

Pip install qrcode [pil]

Usage:

1. Enter on the command line

Qr "Some text" > test.png

2. Enter in python

Import qrcodeimg = qrcode.make ('Some data here')

Advanced usage:

Use the QRCode class

Import qrcodeqr = qrcode.QRCode (version=1, error_correction=qrcode.constants.ERROR_CORRECT_L, box_size=10, border=4,) qr.add_data ('Some data') qr.make (fit=True) img = qr.make_image (fill_color= "black", back_color= "white")

Parameter version: the size of the QR code, which has a total of 40 sizes. The size of the QR code is controlled by integers from 1 to 40 (the minimum is 1Magne21x21 matrix).

Parameter error_correction: error correction level. For example, if the QR code is disabled, it can still be scanned. The default is M level.

About 7% of the code at the ERROR_CORRECT_LL level can be modified. About 15% at the ERROR_CORRECT_M (default) M level can be modified. About 25% at the ERROR_CORRECT_QQ level can be modified. About 30% at the ERROR_CORRECT_HH level can be modified.

Parameter box_size: controls the number of pixels in each cell of the QR code

Parameter border: control border, minimum 4

Parameters fill_color and back_color: change the background color of the QR code and the color of each cell

This is the end of the article on "how Pythonqrcode generates a QR code". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report