참고: 이 기능은 GD2 그래픽 라이브러리에 따라 다릅니다
최근에 PHP를 사용하여 썸네일을 생성하고 싶었는데 온라인에서 검색한 결과 PHP를 사용하여 이미지 썸네일 생성
이라는 기사를 발견했습니다.시험해본 결과 다음과 같은 문제점을 발견했습니다.
1. png 이미지에서 생성된 썸네일은 jpg 형식입니다
2. png 이미지에서 생성된 썸네일은 투명(반투명) 효과가 없습니다(검은색 배경으로 채워짐)
3. 코드 구문이 비교적 오래되었습니다
따라서 이번 버전을 기반으로 간단히 수정하고 최적화했습니다.
PHP에서 썸네일 클래스 생성
<?php /* * desc: Resize Image(png, jpg, gif) * author: 十年后的卢哥哥 * date: 2014.11.13 */ class ResizeImage { //图片类型 private $type; //实际宽度 private $width; //实际高度 private $height; //改变后的宽度 private $resize_width; //改变后的高度 private $resize_height; //是否裁图 private $cut; //源图象 private $srcimg; //目标图象地址 private $dstimg; //临时创建的图象 private $im; function __construct($imgPath, $width, $height, $isCut, $savePath) { $this->srcimg = $imgPath; $this->resize_width = $width; $this->resize_height = $height; $this->cut = $isCut; //图片的类型 $this->type = strtolower(substr(strrchr($this->srcimg,"."),1)); //初始化图象 $this->initi_img(); //目标图象地址 $this -> dst_img($savePath); //-- $this->width = imagesx($this->im); $this->height = imagesy($this->im); //生成图象 $this->newimg(); ImageDestroy ($this->im); } private function newimg() { //改变后的图象的比例 $resize_ratio = ($this->resize_width)/($this->resize_height); //实际图象的比例 $ratio = ($this->width)/($this->height); if($this->cut) { //裁图 $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height); if($this->type=="png") { imagefill($newimg, 0, 0, imagecolorallocatealpha($newimg, 0, 0, 0, 127)); } if($ratio>=$resize_ratio) { //高度优先 imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,$this->resize_height, (($this->height)*$resize_ratio), $this->height); } else { //宽度优先 imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, $this->resize_height, $this->width, (($this->width)/$resize_ratio)); } } else { //不裁图 if($ratio>=$resize_ratio) { $newimg = imagecreatetruecolor($this->resize_width,($this->resize_width)/$ratio); if($this->type=="png") { imagefill($newimg, 0, 0, imagecolorallocatealpha($newimg, 0, 0, 0, 127)); } imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width, ($this->resize_width)/$ratio, $this->width, $this->height); } else { $newimg = imagecreatetruecolor(($this->resize_height)*$ratio,$this->resize_height); if($this->type=="png") { imagefill($newimg, 0, 0, imagecolorallocatealpha($newimg, 0, 0, 0, 127)); } imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, ($this->resize_height)*$ratio, $this->resize_height, $this->width, $this->height); } } if($this->type=="png") { imagesavealpha($newimg, true); imagepng ($newimg,$this->dstimg); } else { imagejpeg ($newimg,$this->dstimg); } } //初始化图象 private function initi_img() { if($this->type=="jpg") { $this->im = imagecreatefromjpeg($this->srcimg); } if($this->type=="gif") { $this->im = imagecreatefromgif($this->srcimg); } if($this->type=="png") { $this->im = imagecreatefrompng($this->srcimg); } } //图象目标地址 private function dst_img($dstpath) { $full_length = strlen($this->srcimg); $type_length = strlen($this->type); $name_length = $full_length-$type_length; $name = substr($this->srcimg,0,$name_length-1); $this->dstimg = $dstpath; } } ?>
사용
사용시에는 클래스의 생성자를 직접 호출하면 됩니다.
$resizeimage = 새로운 resizeimage($imgPath, $width, $height, $isCut, $savePath);
매개변수
$imgPath: 원본 이미지 주소
$width: 썸네일 너비
$height: 썸네일 높이
$isCut: 자르기 여부, 부울 값
$savePath: 썸네일 주소(원본 이미지 주소와 동일할 수 있음)
예
<?php include "ResizeImage.php"; //jpg $jpgResize = new ResizeImage("img/test_1920_1200.jpg", 320, 240, false, "img/test_320_240.jpg"); //png $pngResize = new ResizeImage("img/test_1024_746.png", 320, 240, false, "img/test_320_240.png"); ?>
효과