最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
超简单php 大图生成缩略图实现代码
时间:2022-06-24 21:07:22 编辑:袖梨 来源:一聚教程网
超简单php教程 大图生成缩略图实现代码
/**
* 生成缩略图
*
* @param string $imagepath 图片路径
* @param string $thumb 生成缩略图名称
* @param integer $width 生成缩略图最大宽度
* @param integer $height 生成缩略图最大高度
**/
function resizeimage($imagepath, $thumb, $, $)
{
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');
?>
相关文章
- yandex登录入口一键直达-俄罗斯搜索引擎官方登录入口 12-24
- 豆包官网网页版入口-豆包AI智能在线体验 12-24
- 崩坏星穹铁道3.8橡木鸣蛀之梦帮派迷钟解密流程攻略 12-24
- 嘟嘟脸恶作剧在哪预约 全平台预约渠道预约奖励介绍 12-24
- 漫蛙2(Manwa2)漫画最新网页版极速入口-漫蛙2在线阅读一键直达 12-24
- 崩坏星穹铁道3.8橡木鸣蛀之梦未来迷钟解密流程攻略 12-24