-
- 클래스 QRCode{
- 공개 $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 = 배열();
- foreach($post_data as $key => $value)
- {
- $data_Array[] = $key.'='.$value;
- }
- $data = implode("&",$data_Array);
- $ch = 컬_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 = 컬_exec($ch);
- curl_close($ch);
- $결과 반환;
- }
- function outimgase(){
- echo $this->qrcode();
- }
- }
- header("콘텐츠 유형:이미지/png");
- $t = 새로운 QRCode(300,300,"tianxin");
复system代码
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();
- 읽기 파일($url);
- $img = ob_get_contents();
- ob_end_clean();
- $size = strlen($img);
- $fp2=@fopen($filename, "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 = strtolower(substr(image_type_to_extension($imageInfo[2]), 1));
- $imageSize = 파일 크기($img);
- $info = array(
- "width" => $imageInfo[0],
- "height" => $imageInfo[1],
- "type" => $imageType,
- "크기" => $imageSize,
- "mime" => $imageInfo['mime']
- );
- $정보 반환;
- } else {
- false를 반환합니다.
- }
- }
- function Thumb($image, $thumbname, $type='', $maxWidth=200, $maxHeight=50, $interlace=true) {
- // 获取原图信息
- $info = getImageInfo($image);
- if ($info !== false) {
- $srcWidth = $info['width'];
- $srcHeight = $info['높이'];
- $type = 비어 있음($type) ? $info['유형'] : $유형;
- $type = strtolower($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);
- 그 외
- $thumbImg = imagecreate($width, $height); 그 외
- imagecopyreised($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth, $srcHeight);
- if ('gif' == $type || 'png' == $type) {
- //imagealphablending($thumbImg, false);//取消默认的混color模式
- //imagesavealpha( $thumbImg,true);//설정된 알파 통신
- $Background_color = imagecolorallocate($thumbImg, 0, 255, 0); // 指派一个绿color
- imagecolortransparent($thumbImg, $Background_color); // 设置为透明color,若注释掉该行则输流绿color的图
- }
- // 对jpeg图shape设置隔行扫描
- 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($thumb,"wy.jpg","jpg",$sInfo["width"]/4,$sInfo["height"]/4);
- $wInfo = getImageInfo($water);
- //如果图 Images 소문자, 不生成图文
- if ($sInfo["width"] < $wInfo["width"] || $sInfo['height'] < $wInfo[' 높이'])
- false를 반환합니다.
- //建立图이미지
- $sCreateFun = "imagecreatefrom" . $sInfo['유형'];
- $sImage = $sCreateFun($source);
- $wCreateFun = "imagecreatefrom" . $wInfo['유형'];
- $wImage = $wCreateFun($water);
- //정의된 컬러 이미지
- imagealphablending($wImage, true);
- //图image位置,默认为右下角右对齐
- // $posY = $sInfo["height"] - $wInfo["height"];
- // $posX = $sInfo["너비"] - $wInfo["너비"];
- $posY = ($sInfo["높이"] - $wInfo["높이"])/2;
- $posX = ($sInfo["너비"] - $wInfo["너비"])/2;
- //生成混합图이미지
- imagecopymerge($sImage, $wImage, $posX, $posY, 0, 0, $wInfo['width'], $wInfo['height'], $alpha);
- //输출图이미지
- $ImageFun = '이미지' . $sInfo['유형'];
- //如果没有给保存文件name ,默认为原图이미지명
- if (!$savename) {
- $savename = $source;
- @unlink($source);
- }
- //이미지 저장
- $ImageFun($sImage, $savename)
- imagedestroy($sImage)
- }
- water($source,$water);
코드 복사 위 코드에서는 3가지 함수를 사용하여 QR코드를 생성하는 파일을 GrabImage() 함수로 변환합니다. 다음 기능은 이미지의 크기 조정을 처리하고 대상 이미지를 두 번째 위치에 추가하는 것입니다.
3. 다음은 다음 코드가 포함된 항목 파일 index.html입니다.
-
-
- middle_bbs에서 이미지에 대한 고유한 QR 코드 생성기를 정의할 수 있습니다. it-home.org
-
- 🎜>
가운데는 이미지 맞춤설정을 위한 OK QR 코드 생성기입니다.
-
- div>
-
-
-
- 코드 복사
-
-
|