最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
可定制的PHP缩略图生成程式(需要GD库支持)
时间:2022-07-02 10:17:59 编辑:袖梨 来源:一聚教程网
经典的PHP缩略图生成程式,基于GD库,可指定生成路径及生成目标的宽高细节
使用方法: 在支持GD库的PHP环境中,将以下代码另存为resize.php测试
$FILENAME="image_name";
// 生成图片的宽度
$RESIZE;
// 生成图片的高度
$RESIZE;
//生成图片的路径
$uploaddir="c:/winnt/temp";
function ResizeImage($im,$maxwidth,$maxheight,$name){
global $uploaddir;
$width = imagesx($im);
$height = imagesy($im);
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){
if($maxwidth && $width > $maxwidth){
$widthratio = $maxwidth/$width;
$RESIZEWIDTH=true;
}
if($maxheight && $height > $maxheight){
$heightratio = $maxheight/$height;
$RESIZEHEIGHT=true;
}
if($RESIZEWIDTH && $RESIZEHEIGHT){
if($widthratio < $heightratio){
$ratio = $widthratio;
}else{
$ratio = $heightratio;
}
}elseif($RESIZEWIDTH){
$ratio = $widthratio;
}elseif($RESIZEHEIGHT){
$ratio = $heightratio;
}
$newwidth = $width * $ratio;
$newheight = $height * $ratio;
if(function_exists("imagecopyresampled")){
相关文章
- 简道云网页版登录-简道云电脑版官网登录 01-24
- 一耽漫画下载正版官网-2026最新版高速下载通道 01-24
- ao3网页版链接入口-ao3网页版链接获取步骤 01-24
- 杨紫《生命树》在哪看?杨紫生命树全40集高清未删减在线观看入口地址 01-24
- 免费看短剧软件有哪些app-短剧大全免费追剧app推荐 01-24
- 惠普驱动下载官网-惠普正版驱动下载入口 01-24