超簡單php教程 大圖生成縮略圖實現代碼
<?php
/**
* 生成縮略圖
*
* @param string $imagepath 圖片路徑
* @param string $thumb 生成縮略圖名稱
* @param integer $width 生成縮略圖最大寬度
* @param integer $height 生成縮略圖最大高度
**/
function resizeimage($imagepath, $thumb, $width = 200, $height = 200)
{
list($imagewidth, $imageheight) = getimagesize($imagepath);
$imagepath = imagecreatefromjpeg($imagepath);
if ($width && ($imagewidth < $imageheight))
{
$width = ($height / $imageheight) * $imagewidth;
}
else
{
$height = ($width / $imagewidth) * $imageheight;
}
$image = imagecreatetruecolor($width, $height);
imagecopyresampled($image, $imagepath, 0, 0, 0, 0, $width, $height, $imagewidth, $imageheight);
imagepng($image, $thumb);
imagedestroy($image);
}
resizeimage('test.jpg', 'test_thumb.jpg');
?>