1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

QRコードの作成(Google Colabを使って簡単に!)

Posted at

#はじめに
新型コロナの影響でますます利用価値が高まっているQRコード。プログラムに組み込む機会も増えていると思いますので、Pythonを使って簡単に表示させる方法を紹介します。以下内容の利用は自己責任でお願いします。

#Google Colab コード
まず初めに、必要なモジュールをインストールします。
1.画像を扱うためのモジュールPillowをインストールします。

!pip3 install pillow

2.QRコードの変換モジュールをインストールします。

!pip3 install qrcode

3.文字列をQRコードに変換するためのコードを書きます。

#モジュールのインポート
from PIL import Image
import qrcode
from IPython.display import Image,display_png

img = qrcode.make("この文をQRコードにして表示します。")

#test.pngというファイル名で保存し、表示させます。
img.save('test.png')
display_png(Image('test.png'))
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?