ホームページ >バックエンド開発 >PHPチュートリアル >超簡単なPHPラージ画像生成サムネイル実装コード_PHPチュートリアル
超简单php教程大图生成缩略图实现代码
/**
* サムネイルを生成します
*
* @param string $imagepath 画像パス
* @param string $thumb サムネイル名を生成します
* @param integer $width はサムネイルの最大幅を生成します
* @param integer $height 生成されるサムネイルの最大の高さ
**/
関数 Resizeimage($imagepath, $thumb, $width = 200, $height = 200)
{
list($imagewidth, $imageheight) = getimagesize($imagepath);
$imagepath = imagecreatefromjpeg($imagepath);
if ($width && ($imagewidth < $imageheight))
{
$width = ($height / $imageheight) * $imagewidth;
}
それ以外
{
$height = ($width / $imagewidth) * $imageheight;
}
$image = imagecreatetruecolor($width, $height);
imagecopyresampled($image, $imagepath, 0, 0, 0, 0, $width, $height, $imagewidth, $imageheight);
imagepng($image, $thumb);
imagedestroy($image);
}
sizeimage('test.jpg', 'test_thumb.jpg');
?>