本图像处理类可以完成对图片的缩放、加水印和裁剪的功能,支持多种图片类型的处理,缩放时进行优化等。
<?php /** file: image.class.php 类名为Image 图像处理类,可以完成对各种类型的图像进行缩放、加图片水印和剪裁的操作。 */ class Image { /* 图片保存的路径 */ private $path; /** * 实例图像对象时传递图像的一个路径,默认值是当前目录 * @param string $path 可以指定处理图片的路径 */ function __construct($path="./"){ $this->path = rtrim($path,"/")."/"; } /** * 对指定的图像进行缩放 * @param string $name 是需要处理的图片名称 * @param int $width 缩放后的宽度 * @param int $height 缩放后的高度 * @param string $qz 是新图片的前缀 * @return mixed 是缩放后的图片名称,失败返回false; */ function thumb($name, $width, $height,$qz="th_"){ /* 获取图片宽度、高度、及类型信息 */ $imgInfo = $this->getInfo($name); /* 获取背景图片的资源 */ $srcImg = $this->getImg($name, $imgInfo); /* 获取新图片尺寸 */ $size = $this->getNewSize($name,$width, $height,$imgInfo); /* 获取新的图片资源 */ $newImg = $this->kidOfImage($srcImg, $size,$imgInfo); /* 通过本类的私有方法,保存缩略图并返回新缩略图的名称,以"th_"为前缀 */ return $this->createNewImage($newImg, $qz.$name,$imgInfo); } /** * 为图片添加水印 * @param string $groundName 背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式 * @param string $waterName 图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式 * @param int $waterPos 水印位置,有10种状态,0为随机位置; * 1为顶端居左,2为顶端居中,3为顶端居右; * 4为中部居左,5为中部居中,6为中部居右; * 7为底端居左,8为底端居中,9为底端居右; * @param string $qz 加水印后的图片的文件名在原文件名前面加上这个前缀 * @return mixed 是生成水印后的图片名称,失败返回false */ function waterMark($groundName, $waterName, $waterPos=0, $qz="wa_"){ /*获取水印图片是当前路径,还是指定了路径*/ $curpath = rtrim($this->path,"/")."/"; $dir = dirname($waterName); if($dir == "."){ $wpath = $curpath; }else{ $wpath = $dir."/"; $waterName = basename($waterName); } /*水印图片和背景图片必须都要存在*/ if(file_exists($curpath.$groundName) && file_exists($wpath.$waterName)){ $groundInfo = $this->getInfo($groundName); //获取背景信息 $waterInfo = $this->getInfo($waterName, $dir); //获取水印图片信息 /*如果背景比水印图片还小,就会被水印全部盖住*/ if(!$pos = $this->position($groundInfo, $waterInfo, $waterPos)){ echo '水印不应该比背景图片小!'; return false; } $groundImg = $this->getImg($groundName, $groundInfo); //获取背景图像资源 $waterImg = $this->getImg($waterName, $waterInfo, $dir); //获取水印图片资源 /* 调用私有方法将水印图像按指定位置复制到背景图片中 */ $groundImg = $this->copyImage($groundImg, $waterImg, $pos, $waterInfo); /* 通过本类的私有方法,保存加水图片并返回新图片的名称,默认以"wa_"为前缀 */ return $this->createNewImage($groundImg, $qz.$groundName, $groundInfo); }else{ echo '图片或水印图片不存在!'; return false; } } /** * 在一个大的背景图片中剪裁出指定区域的图片 * @param string $name 需要剪切的背景图片 * @param int $x 剪切图片左边开始的位置 * @param int $y 剪切图片顶部开始的位置 * @param int $width 图片剪裁的宽度 * @param int $height 图片剪裁的高度 * @param string $qz 新图片的名称前缀 * @return mixed 裁剪后的图片名称,失败返回false; */ function cut($name, $x, $y, $width, $height, $qz="cu_"){ $imgInfo=$this->getInfo($name); //获取图片信息 /* 裁剪的位置不能超出背景图片范围 */ if( (($x+$width) > $imgInfo['width']) || (($y+$height) > $imgInfo['height'])){ echo "裁剪的位置超出了背景图片范围!"; return false; } $back = $this->getImg($name, $imgInfo); //获取图片资源 /* 创建一个可以保存裁剪后图片的资源 */ $cutimg = imagecreatetruecolor($width, $height); /* 使用imagecopyresampled()函数对图片进行裁剪 */ imagecopyresampled($cutimg, $back, 0, 0, $x, $y, $width, $height, $width, $height); imagedestroy($back); /* 通过本类的私有方法,保存剪切图并返回新图片的名称,默认以"cu_"为前缀 */ return $this->createNewImage($cutimg, $qz.$name,$imgInfo); } /* 内部使用的私有方法,用来确定水印图片的位置 */ private function position($groundInfo, $waterInfo, $waterPos){ /* 需要加水印的图片的长度或宽度比水印还小,无法生成水印 */ if( ($groundInfo["width"]<$waterInfo["width"]) || ($groundInfo["height"]<$waterInfo["height"]) ) { return false; } switch($waterPos) { case 1: //1为顶端居左 $posX = 0; $posY = 0; break; case 2: //2为顶端居中 $posX = ($groundInfo["width"] - $waterInfo["width"]) / 2; $posY = 0; break; case 3: //3为顶端居右 $posX = $groundInfo["width"] - $waterInfo["width"]; $posY = 0; break; case 4: //4为中部居左 $posX = 0; $posY = ($groundInfo["height"] - $waterInfo["height"]) / 2; break; case 5: //5为中部居中 $posX = ($groundInfo["width"] - $waterInfo["width"]) / 2; $posY = ($groundInfo["height"] - $waterInfo["height"]) / 2; break; case 6: //6为中部居右 $posX = $groundInfo["width"] - $waterInfo["width"]; $posY = ($groundInfo["height"] - $waterInfo["height"]) / 2; break; case 7: //7为底端居左 $posX = 0; $posY = $groundInfo["height"] - $waterInfo["height"]; break; case 8: //8为底端居中 $posX = ($groundInfo["width"] - $waterInfo["width"]) / 2; $posY = $groundInfo["height"] - $waterInfo["height"]; break; case 9: //9为底端居右 $posX = $groundInfo["width"] - $waterInfo["width"]; $posY = $groundInfo["height"] - $waterInfo["height"]; break; case 0: default: //随机 $posX = rand(0,($groundInfo["width"] - $waterInfo["width"])); $posY = rand(0,($groundInfo["height"] - $waterInfo["height"])); break; } return array("posX"=>$posX, "posY"=>$posY); } /* 内部使用的私有方法,用于获取图片的属性信息(宽度、高度和类型) */ private function getInfo($name, $path=".") { $spath = $path=="." ? rtrim($this->path,"/")."/" : $path.'/'; $data = getimagesize($spath.$name); $imgInfo["width"] = $data[0]; $imgInfo["height"] = $data[1]; $imgInfo["type"] = $data[2]; return $imgInfo; } /*内部使用的私有方法, 用于创建支持各种图片格式(jpg,gif,png三种)资源 */ private function getImg($name, $imgInfo, $path='.'){ $spath = $path=="." ? rtrim($this->path,"/")."/" : $path.'/'; $srcPic = $spath.$name; switch ($imgInfo["type"]) { case 1: //gif $img = imagecreatefromgif($srcPic); break; case 2: //jpg $img = imagecreatefromjpeg($srcPic); break; case 3: //png $img = imagecreatefrompng($srcPic); break; default: return false; break; } return $img; } /* 内部使用的私有方法,返回等比例缩放的图片宽度和高度,如果原图比缩放后的还小保持不变 */ private function getNewSize($name, $width, $height, $imgInfo){ $size["width"] = $imgInfo["width"]; //原图片的宽度 $size["height"] = $imgInfo["height"]; //原图片的高度 if($width < $imgInfo["width"]){ $size["width"]=$width; //缩放的宽度如果比原图小才重新设置宽度 } if($height < $imgInfo["height"]){ $size["height"] = $height; //缩放的高度如果比原图小才重新设置高度 } /* 等比例缩放的算法 */ if($imgInfo["width"]*$size["width"] > $imgInfo["height"] * $size["height"]){ $size["height"] = round($imgInfo["height"]*$size["width"]/$imgInfo["width"]); }else{ $size["width"] = round($imgInfo["width"]*$size["height"]/$imgInfo["height"]); } return $size; } /* 内部使用的私有方法,用于保存图像,并保留原有图片格式 */ private function createNewImage($newImg, $newName, $imgInfo){ $this->path = rtrim($this->path,"/")."/"; switch ($imgInfo["type"]) { case 1: //gif $result = imageGIF($newImg, $this->path.$newName); break; case 2: //jpg $result = imageJPEG($newImg,$this->path.$newName); break; case 3: //png $result = imagePng($newImg, $this->path.$newName); break; } imagedestroy($newImg); return $newName; } /* 内部使用的私有方法,用于加水印时复制图像 */ private function copyImage($groundImg, $waterImg, $pos, $waterInfo){ imagecopy($groundImg, $waterImg, $pos["posX"], $pos["posY"], 0, 0, $waterInfo["width"],$waterInfo["height"]); imagedestroy($waterImg); return $groundImg; } /* 内部使用的私有方法,处理带有透明度的图片保持原样 */ private function kidOfImage($srcImg, $size, $imgInfo){ $newImg = imagecreatetruecolor($size["width"], $size["height"]); $otsc = imagecolortransparent($srcImg); if( $otsc >= 0 && $otsc < imagecolorstotal($srcImg)) { $transparentcolor = imagecolorsforindex( $srcImg, $otsc ); $newtransparentcolor = imagecolorallocate( $newImg, $transparentcolor['red'], $transparentcolor['green'], $transparentcolor['blue'] ); imagefill( $newImg, 0, 0, $newtransparentcolor ); imagecolortransparent( $newImg, $newtransparentcolor ); } imagecopyresized( $newImg, $srcImg, 0, 0, 0, 0, $size["width"], $size["height"], $imgInfo["width"], $imgInfo["height"] ); imagedestroy($srcImg); return $newImg; } }

phpsession 실패 이유에는 구성 오류, 쿠키 문제 및 세션 만료가 포함됩니다. 1. 구성 오류 : 올바른 세션을 확인하고 설정합니다. 2. 쿠키 문제 : 쿠키가 올바르게 설정되어 있는지 확인하십시오. 3. 세션 만료 : 세션 시간을 연장하기 위해 세션을 조정합니다 .GC_MAXLIFETIME 값을 조정하십시오.

PHP에서 세션 문제를 디버그하는 방법 : 1. 세션이 올바르게 시작되었는지 확인하십시오. 2. 세션 ID의 전달을 확인하십시오. 3. 세션 데이터의 저장 및 읽기를 확인하십시오. 4. 서버 구성을 확인하십시오. 세션 ID 및 데이터를 출력, 세션 파일 컨텐츠보기 등을 통해 세션 관련 문제를 효과적으로 진단하고 해결할 수 있습니다.

Session_Start ()로 여러 통화를하면 경고 메시지와 가능한 데이터 덮어 쓰기가 발생합니다. 1) PHP는 세션이 시작되었다는 경고를 발행합니다. 2) 세션 데이터의 예상치 못한 덮어 쓰기를 유발할 수 있습니다. 3) Session_status ()를 사용하여 반복 통화를 피하기 위해 세션 상태를 확인하십시오.

SESSION.GC_MAXLIFETIME 및 SESSION.COOKIE_LIFETIME을 설정하여 PHP에서 세션 수명을 구성 할 수 있습니다. 1) SESSION.GC_MAXLIFETIME 서버 측 세션 데이터의 생존 시간을 제어합니다. 2) 세션 .Cookie_Lifetime 클라이언트 쿠키의 수명주기를 제어합니다. 0으로 설정하면 브라우저가 닫히면 쿠키가 만료됩니다.

데이터베이스 스토리지 세션 사용의 주요 장점에는 지속성, 확장 성 및 보안이 포함됩니다. 1. 지속성 : 서버가 다시 시작 되더라도 세션 데이터는 변경되지 않아도됩니다. 2. 확장 성 : 분산 시스템에 적용하여 세션 데이터가 여러 서버간에 동기화되도록합니다. 3. 보안 : 데이터베이스는 민감한 정보를 보호하기 위해 암호화 된 스토리지를 제공합니다.

SessionHandlerInterface 인터페이스를 구현하여 PHP에서 사용자 정의 세션 처리 구현을 수행 할 수 있습니다. 특정 단계에는 다음이 포함됩니다. 1) CustomsessionHandler와 같은 SessionHandlerInterface를 구현하는 클래스 만들기; 2) 인터페이스의 방법 (예 : Open, Close, Read, Write, Despare, GC)의 수명주기 및 세션 데이터의 저장 방법을 정의하기 위해 방법을 다시 작성합니다. 3) PHP 스크립트에 사용자 정의 세션 프로세서를 등록하고 세션을 시작하십시오. 이를 통해 MySQL 및 Redis와 같은 미디어에 데이터를 저장하여 성능, 보안 및 확장 성을 향상시킬 수 있습니다.

SessionId는 웹 애플리케이션에 사용되는 메커니즘으로 사용자 세션 상태를 추적합니다. 1. 사용자와 서버 간의 여러 상호 작용 중에 사용자의 신원 정보를 유지하는 데 사용되는 무작위로 생성 된 문자열입니다. 2. 서버는 쿠키 또는 URL 매개 변수를 통해 클라이언트로 생성하여 보낸다. 3. 생성은 일반적으로 임의의 알고리즘을 사용하여 독창성과 예측 불가능 성을 보장합니다. 4. 실제 개발에서 Redis와 같은 메모리 내 데이터베이스를 사용하여 세션 데이터를 저장하여 성능 및 보안을 향상시킬 수 있습니다.

JWT 또는 쿠키를 사용하여 API와 같은 무국적 환경에서 세션을 관리 할 수 있습니다. 1. JWT는 무국적자 및 확장 성에 적합하지만 빅 데이터와 관련하여 크기가 크다. 2. 쿠키는보다 전통적이고 구현하기 쉽지만 보안을 보장하기 위해주의해서 구성해야합니다.


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

에디트플러스 중국어 크랙 버전
작은 크기, 구문 강조, 코드 프롬프트 기능을 지원하지 않음

Dreamweaver Mac版
시각적 웹 개발 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

맨티스BT
Mantis는 제품 결함 추적을 돕기 위해 설계된 배포하기 쉬운 웹 기반 결함 추적 도구입니다. PHP, MySQL 및 웹 서버가 필요합니다. 데모 및 호스팅 서비스를 확인해 보세요.

드림위버 CS6
시각적 웹 개발 도구
