当前位置:Linux教程 - Php - 用gd库生成高质量的缩略图片已测试成功

用gd库生成高质量的缩略图片已测试成功

自已修改加强的


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>用GD生成缩略图</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body>
<?

$filename
="image";// 目标文件名
$resizewidth=200;// 生成图片的宽度
$resizeheight=200;// 生成图片的高度
function resizeimage($im,$maxwidth,$maxheight,$name){
    
$width = imagesx($im);//取得源图片宽度
    
$height = imagesy($im);//取得源图片高度
    
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){//如果设置缩略图的尺寸比实际图形小或者不等于0,则执行
        
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")){
              
$newim = imagecreatetruecolor($newwidth, $newheight);//新建一个真彩色图像,本函数添加于 PHP 4.0.6 并需要 GD 2.0.1 或更高版本。
              
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);//重采样拷贝部分图像并调整大小,需要 GD 2.0.l 或更高版本。
        
}else{
            
$newim = imagecreate($newwidth, $newheight);//(PHP 3, PHP 4 )新建一个基于调色板的图像
              
imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);//(PHP 3, PHP 4 )拷贝部分图像并调整大小
        
}
        
imagejpeg ($newim,$name . ".jpg");//(PHP 3>= 3.0.16, PHP 4 )以 JPEG 格式将图像输出到浏览器或文件
        
imagedestroy ($newim);//销毁一图像,释放与 image 关联的内存
    
}else{
        
imagejpeg ($im,$name . ".jpg");
    }
}



if(
$_FILES['image']['size']){
    if(
$_FILES['image']['type'] == "image/pjpeg"){
        
$im = imagecreatefromjpeg($_FILES['image']['tmp_name']);//从 JPEG 文件或 URL 新建一图像,Windows 版本的 PHP 在 4.3.0 版之前不支持该函数的远程文件访问
    
}elseif($_FILES['image']['type'] == "image/x-png"){
        
$im = imagecreatefrompng($_FILES['image']['tmp_name']);
    }elseif(
$_FILES['image']['type'] == "image/gif"){
        
$im = imagecreatefromgif($_FILES['image']['tmp_name']);
    }
    if(
$im){
        if(
file_exists("$filename.jpg")){
            
unlink("$filename.jpg");
        }
        
resizeimage($im,$resizewidth,$resizeheight,$filename);
        
imagedestroy ($im);//销毁一图像,释放与 image 关联的内存
    
}
}

?>

<img src="<? echo($filename."file:///C|/Sunlinks/Web/WWW/qh663/.jpg?reload=".rand(0,999999));//rand产生一个随机数
?>"><br><br>

<form enctype="multipart/form-data" method="post">
<br>
<input type="file" name="image" size="50" value="浏览"><p>
<input type="submit" value="上传图片">
</form>

</body>
</html>