-
- class QRCode{
- public $w;
- パブリック$h;
- 公開$s;
- 関数 __construct($w1,$h1,$s1){
- $this->w = $w1;
- $this->h = $h1;
- $this->s = $s1;
- $this->outimgase();
- }
- 関数 qrcode(){
- $post_data = array();
- $post_data['cht'] = 'qr';
- $post_data['chs'] = $this->w."x".$this->h;
- $post_data['chl'] = $this->s;
- $post_data['choe'] = "UTF-8";
- $url = "http://chart.apis.google.com/chart";
- $data_Array = array();
- foreach($post_data as $key => $value)
- {
- $data_Array[] = $key.'='.$value;
- }
- $data = implode("&",$data_Array);
- $ch =curl_init();
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_POSTFIELDS,$data);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- $result =curl_exec($ch);
- curl_close($ch);
- $result を返す;
- }
- function outimgase(){
- echo $this->qrcode();
- }
- }
- header("Content-type:image/png");
- $t = 新しい QRCode(300,300,"tianxin");
复制代
2. 次に、PHP ファイルを使用して QR コードとターゲット画像を描画します。
-
-
$surl = $_POST["url"]; - function GrabImage($url,$filename="") {
- if($url==""):return false;endif;
- if($filename=="") {
- $ext=strrchr($url,".");
- if($ext!=".gif" && $ext!=".jpg"):return false;endif;
- $filename=date("dMYHis").$ext;
- }
- ob_start();
- readfile($url);
- $img = ob_get_contents();
- ob_end_clean();
- $size = strlen($img);
- $fp2=@fopen($ファイル名, "a");
- fwrite($fp2,$img);
- fclose($fp2);
- $filename を返します;
- }
- $source = GrabImage("http://localhost/QRCode/QRCode.php","Myqrcode.png");
- $water =GrabImage($surl,"t.png");
- 関数 getImageInfo($img){
- $imageInfo = getimagesize($img);
- if ($imageInfo !== false) {
- $imageType = strto lower(substr(image_type_to_extension($imageInfo[2]), 1));
- $imageSize = ファイルサイズ($img);
- $info = array(
- "幅" => $imageInfo[0],
- "高さ" => $imageInfo[1],
- "タイプ" => $imageType,
- "サイズ" => $ imageSize,
- "mime" => $imageInfo['mime']
- );
- $info を返します;
- } else {
- false を返す;
- }
- }
- function subject($image, $thumbname, $type='', $maxWidth=200, $maxHeight=50, $interlace=true) {
- // 获取原图情報
- $info = getImageInfo($画像);
- if ($info !== false) {
- $srcWidth = $info['width'];
- $srcHeight = $info['高さ'];
- $type = 空($type) ? $info['type'] : $type;
- $type = strto lower($type);
- $インターレース = $インターレース ? 1:0;
- 設定解除($info);
- $scale = min($maxWidth / $srcWidth, $maxHeight / $srcHeight); // 计算缩放比
- if ($scale >= 1) {
- // 超过原图大小不再缩略
- $width = $srcWidth;
- $height = $srcHeight;
- } else {
- // 缩略图尺寸
- $width = (int) ($srcWidth * $scale);
- $height = (int) ($srcHeight * $scale);
- }
- // ダウンロード入原图
- $createFun = 'ImageCreateFrom' 。 ($type == 'jpg' ? 'jpeg' : $type);
- $srcImg = $createFun($image);
- //创建缩略図
- if ($type != 'gif' && function_exists('imagecreatetruecolor'))
- $thumbImg = imagecreatetruecolor($width, $height);
- else
- $thumbImg = imagecreate($width, $height);
- // 复制图片
- if (function_exists("ImageCopyResampled"))
- imagecopyresampled($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth, $srcHeight);
- else
- imagecopyresize($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth, $srcHeight);
- if ('gif' == $type || 'png' == $type) {
- //imagealphablending($thumbImg, false);//取消默认の混色モード
- //imagesavealpha($thumbImg,true); //完全に保存されるアルファ パス情報を設定します
- $background_color = imagecolorallocate($thumbImg, 0, 255, 0); // 指派一个绿色
- imagecolortransparent($thumbImg, $background_color); // 設定は透明色、若注释掉この行に表示される色の画像
- }
- }
- // jpeg 图形設定を隔行扫描
- if ('jpg' == $type || 'jpeg' == $type)
- imageinterlace ($thumbImg, $interlace);
// 画像を生成します
- $imageFun = 'image' 。 ($type == 'jpg' ? 'jpeg' : $type);
- $imageFun($thumbImg, $thumbname);
- imagedestroy($thumbImg);
- imagedestroy($srcImg);
- $thumbname を返します;
- }
- false を返します。
- }
- function Water($source, $thumb, $savename="", $alpha=100){
- //检查文件の有無
- if (!file_exists($source) || !file_exists($thumb))
- false を返します。
- //画像情報
- $sInfo = getImageInfo($source);
- $water =親指($thumb,"wy.jpg","jpg",$sInfo["幅"]/4,$sInfo["高さ"]/4);
- $wInfo = getImageInfo($water);
- //場合は写真が水印の写真より小さく、写真は生成されません
- if ($sInfo["width"] < $wInfo["width"] || $sInfo['height'] < $wInfo['height'])
- false を返します。
- //建立画像
- $sCreateFun = "imagecreatefrom" . $sInfo['タイプ'];
- $sImage = $sCreateFun($source);
- $wCreateFun = "imagecreatefrom" . $wInfo['タイプ'];
- $wImage = $wCreateFun($water);
- //画像の混色モードを設定します
- imagealphablending($wImage, true);
- //画像の位置、右下角右对齐
- // $posY = $sInfo["height"] - $wInfo["height"];
- // $posX = $sInfo["width"] - $wInfo["width"];
- $posY = ($sInfo["高さ"] - $wInfo["高さ"])/2;
- $posX = ($sInfo["幅"] - $wInfo["幅"])/2;
- //混合画像生成
- imagecopymerge($sImage, $wImage, $posX, $posY, 0, 0, $wInfo['width'], $wInfo['height'], $alpha);
- //出画像
- $ImageFun = '画像' . $sInfo['タイプ'];
- //如果没有给出保存文件名,默认是原画像名
- if (!$savename) {
- $savename = $source;
- @リンク解除($source); 🎜}
- //画像を保存します
- $ImageFun($sImage, $savename);
- imagedestroy($sImage)
- }
- water($source,$water);
-
コードをコピーします上記のコードでは、3 つの関数が使用されています。GrabImage() 関数は、QR コードを生成するファイルを画像に変換し、次の関数は画像のスケーリングを処理し、ターゲットの画像を 2 桁目に追加します。 。
3. 以下のコードを含むエントリ ファイルindex.html を示します。
|