Python에서 QR 코드 생성
Python으로 이러한 코드를 생성할 수 있다는 것을 알고 계셨습니까? Python programming language 을 알아야 합니다. 그러나 많은 연습 없이도 생성할 수 있습니다.
qrcode 모듈 설치
pip install qrcode
그런 다음 Python에서 로드할 수 있습니다.
#!/usr/bin/python3
import qrcode
img = qrcode.make('hello world')
img.save('test.png')
이렇게 하면 QR 코드가 이미지(test.png)로 출력됩니다.
그래서 쉽습니다. QR 코드에 얼마나 많은 데이터를 저장할 수 있습니까?
stackoverflow에 따르면
QR codes have three parameters:
Datatype, size (number of 'pixels') and error correction level.
How much information can be stored there also depends on these
parameters.
데이터를 압축하고 이 제한을 어느 정도 우회할 수 있습니다.
관련된 링크들:
Reference
이 문제에 관하여(Python에서 QR 코드 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/petercour/generate-qr-codes-in-python-2da2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)