相關關鍵詞
關于我們
最新文章
php生成二維碼圖片方法匯總
第一種方法:
1,第一種方法:利用使用最廣泛,最方便的Google api技術(shù)實現(xiàn);
2
,<?php //封裝生成二維碼圖片的函數(shù)(方法) /* 利用google api生成二維碼圖片 $content:二維碼內(nèi)容參數(shù) $size:生成二維碼的尺寸,寬度和高度的值 $lev:可選參數(shù),糾錯等級 $margin:生成的二維碼離邊框的距離*/ function create_erweima($content, $size = '100', $lev = 'L', $margin= '0') { $content = urlencode($content); $image = '<img src="http://chart.apis.google.com/...'.$size.'x'.$size.'&cht=qr&chld='.$lev.'|'.$margin.'&chl='.$content.'" widht="'.$size.'" height="'.$size.'" />'; return $image; }