2013/09/26

使用Google Chart API產生QR Code

Google Chart API是由Google提供的一個簡單容易上手的線上製圖工具,之前有看同學『Kennedy』使用過
這次參考『男丁格爾』的『[Js]利用 Google Chart API 來產生 QRCode』文章
用於這次案子,案子的主人希望每個網址都能擁有QR Code,我就順便寫成筆記

QR Code的產生主要是靠以下這段程式碼
http://chart.apis.google.com/chart?cht=qr&chl=內容&chs=寬x高

chl是QR Code的內容
chs是QR Code的寬與高

http://chart.apis.google.com/chart?cht=qr&chl=http://writecodepeople.blogspot.tw/&chs=640x480

將以上網址貼入瀏覽器,就會生成QR Code

對於Google Chart API不太瞭解如何操做的人,可以參考『Google Chart API 簡介』這篇文章所推薦的『Chart Wizard』玩玩看


參考資料:
http://abgne.tw/javascript/apply-javascript/js-google-chart-api-qrcode.html
http://kennedyyusbrain.blogspot.tw/2012/08/google-chart-api.html
http://coopermaa2nd.blogspot.tw/2011/01/google-chart-api.html