摘要: JavaScript Code12345678910111213141516171819<scripttype="text/javascript">functionQRCode(content,width,height){//預設寬高為120x120width=!!width?width:120;height=!!height?height:120;//編碼content=encodeURIComponent(content);return'http://chart.apis.google.com/chart?cht=qr&chl='+c 阅读全文
posted @ 2013-06-06 13:07 Jimmych 阅读(296) 评论(0) 推荐(0)
摘要: The data URI scheme is a URI scheme (Uniform Resource Identifier scheme) that provides a way to include data in-line in web pages as if they were external resources.假設我們的圖型存放在Database裡,以往要取出會使用以下作法:1.撰寫一個ashx網頁讀取圖型檔,並寫出資訊串流2.在要顯示的網頁使用 <img src="xxx.ashx" />現在可以用data URI 方式處理:<% st 阅读全文
posted @ 2013-06-06 11:13 Jimmych 阅读(177) 评论(0) 推荐(0)