使用 Google Char API 所產生本站的 QRCode |
使用方式:
首先先介紹使用 GET 的方式直接取得 QRCode
https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=Hello%20world
上列網址所產生的 QRCode |
- https://chart.googleapis.com/chart? - 產生QRCode 的連結
- chs - 產生圖片的高與寬格式為 寬度x高度
- cht - 輸入產生的圖片類型 qr 即表示 QRCode
- chl - 輸入需要轉換的文字或網址
只要使用 HTML 的 img 標籤即可使用例如
<img src="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=Hello%20world" />
另外如果您網站的同一頁面上需要使用到大量的 QRCode
Google 也貼心的準備了 10 個網域
能夠增加網站讀取的速度
- http://0.chart.apis.google.com/chart?cht=...
- http://1.chart.apis.google.com/chart?cht=...
- ...
- ...
- http://9.chart.apis.google.com/chart?cht=...
0 意見