首页 > 开发 > PHP > 正文

PHP生成缩略图的实现

2024-05-04 23:04:45
字体:
来源:转载
供稿:网友
php令我们惊喜的就是在图形图象处理方面要忧于asp,用gd库php就可以轻松的实现缩略图。这一篇文章我们的目的就是用gd来生成缩略图,php可以把缩略图直接生成输送到浏览器也可以以文件的形式把其存储到硬盘当中。



在生成缩略图的过程当中我们需要用到gd库当中的几个函数:

getimagesize(string filename [,array var])),取得图像的信息,返回值是一人array,包括几项信息$var[0]----返回图像的width,$var[1]----返回height,[2]返回图像文件的type,[4]返回的是与<img src="">当中的wdith,height有关的width="",height=""信息。

imagex(resource image)

imagey(resource image)  返回图像的宽和高

imagecopyresized(des img,src img,int des_x,int des_y,int src_x,int src_y,int des_w,int des_h,int src_w,int src_y)  复制并截取区域图像

imagecreatetruecolor(int width,int height)  创建一个真彩图

imagejpeg(resource image)

下面就是code:

<?php
# constants
define(image_base, '/var/www/html/mbailey/images'
);
define(max_width, 150
);
define(max_height, 150
);

# get image location
$image_file = str_replace('..', '', $_server['query_string'
]);
$image_path = image_base . "/$image_file"
;

# load image
$img = null
;
$ext = strtolower(end(explode('.', $image_path
)));
if (
$ext == 'jpg' || $ext == 'jpeg'
) {
    
$img = @imagecreatefromjpeg($image_path
);
} else if (
$ext == 'png'
) {
    
$img = @imagecreatefrompng($image_path
);
# only if your version of gd includes gif support
} else if ($ext == 'gif'
) {
    
$img = @imagecreatefrompng($image_path
);
}

# if an image was successfully loaded, test the image for size
if ($img
) {

    
# get image size and scale ratio
    
$width = imagesx($img
);
    
$height = imagesy($img
);
    
$scale = min(max_width/$width, max_height/$height
);

    
# if the image is larger than the max shrink it
    
if ($scale < 1
) {
        
$new_width = floor($scale*$width
);
        
$new_height = floor($scale*$height
);

        
# create a new temporary image
        
$tmp_img = imagecreatetruecolor($new_width, $new_height
);

        
# copy and resize old image into new image
        
imagecopyresized($tmp_img, $img, 0, 0, 0, 0
,
                         
$new_width, $new_height, $width, $height
);
        
imagedestroy($img
);
        
$img = $tmp_img
;
    }
}

# create error image if necessary
if (!$img
) {
    
$img = imagecreate(max_width, max_height
);
    
imagecolorallocate($img,0,0,0
);
    
$c = imagecolorallocate($img,70,70,70
);
    
imageline($img,0,0,max_width,max_height,$c2
);
    
imageline($img,max_width,0,0,max_height,$c2
);
}

# display the image
header("content-type: image/jpeg"
);
imagejpeg($img
);
?>



我们把上面的code存储为test.php,然后通过test.php?image name的形式来访问,结果会让你惊喜的,因为在这里你看到了php的优点,它可以让asp相形见绌。

上面的这段代码当中我们通过end(explode(".",$image_path)来取得文件的扩展名,但是我感觉还是不理想。这样是能够取得文件的类型的,因为end()函数会跳到本array的最后一个单元,但是如果我们采用getimagesize()会取得更为强大的专门针对于图像文件的类型。

本程序显示的缩略图是限制宽高都在150内,然后用min()函数来取得它们比值的最小值来计算缩略图的宽和高,并且通过一系列的gd库函数来取得相应的信息,并且呈现给浏览器,当然你也可以写到你所使用的硬盘当中。

好了,这就是php的缩略图功能,大家觉得有什么好的意见可以多多拍砖!
  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表