-
-
/*
- * desc: 画像のサイズ変更(png、jpg、gif)
- */
- 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; Cut = $isCut;
- //画像のタイプ
$this->type = strto lower(substr(strrchr($this->srcimg,"." ),1));< ;/p>
//画像を初期化します
- $this->initi_img();
- //ターゲット画像アドレス
- $this ->dst_img($savePath); >width = imagex($this->im);
- $this->height = imagey($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 {
- //Width first
- 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 ->高さ);
- } 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);
- }
- }< ;/p>
//画像初期化
- プライベート関数 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 = 新しいサイズ変更画像($imgPath, $width, $height, $isCut, $savePath);
パラメータ
$imgPath: 元の画像アドレス
$width: サムネイルの幅
$height: サムネイルの高さ
$isCut: トリミングするかどうか、ブール値
$savePath: サムネイルのアドレス (元の画像のアドレスと同じでも構いません)
例:
-
-
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");
- ?>
-
コードをコピー
効果:
|