-
- /**
- * *
- *合同スケーリング
- * @paramunknown_type $srcImageソース画像パス
- * @paramunknown_type $toFileターゲット画像パス
- * @paramunknown_type $maxWidth 最大幅
- * @paramknown_type $maxHeight 最大高さ
- * @paramknown_type $imgQuality 画質
- * @return 不明
- */
- 関数リサイズ($srcImage,$toFile,$maxWidth = 100,$maxHeight = 100,$imgQuality=100)
- {
-
- list($width, $height, $type, $attr) = getimagesize($srcImage);
- if($width < $maxWidth || $height < $maxHeight) return ;
- switch ($type) {
- ケース 1: $img = imagecreatefromgif($srcImage);壊す;
- ケース 2: $img = imagecreatefromjpeg($srcImage);壊す;
- ケース 3: $img = imagecreatefrompng($srcImage);壊す;
- }
- $scale = min($maxWidth/$width, $maxHeight/$height); //求出绽放比
-
- if($scale $newWidth = Floor($scale*$width);
- $newHeight = フロア($scale*$height);
- $newImg = imagecreatetruecolor($newWidth, $newHeight);
- imagecopyresampled($newImg, $img, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);
- $newName = "";
- $toFile = preg_replace("/(.gif|.jpg|.jpeg|.png)/i","",$toFile);
-
- switch($type) {
- ケース 1: if(imagegif($newImg, "$toFile$newName.gif", $imgQuality))
- return "$newName.gif";壊す;
- ケース 2: if(imagejpeg($newImg, "$toFile$newName.jpg", $imgQuality))
- return "$newName.jpg";壊す;
- ケース 3: if(imagepng($newImg, "$toFile$newName.png", $imgQuality))
- return "$newName.png";壊す;
- デフォルト: if(imagejpeg($newImg, "$toFile$newName.jpg", $imgQuality))
- return "$newName.jpg";壊す;
- }
- imagedestroy($newImg);
- }
- imagedestroy($img);
- false を返します。
- }
复制代
|