这篇文章主要为大家详细介绍了php 动态生成缩略图并输出显示的简单示例,具有一定的参考价值,可以用来参考一下。
调用方法:<img src="thumbs.php?filename=photo.jpg&width=100&height=100">
/**
* 动态生成缩略图输出显示
*
* @Example: <img src="thumbs.php?filename=photo.jpg&width=100&height=100">
* @arrange (512.笔记) www.q1010.com
**/
$filename= $_GET['filename'];
$width = $_GET['width'];
$height = $_GET['height'];
$path="http://localhost/images/"; //finish in "/"
// Content type
header('Content-type: image/jpeg');
// Get new dimensions
list($width_orig, $height_orig) = getimagesize($path.$filename);
if ($width && ($width_orig < $height_orig)) {
$width = ($height / $height_orig) * $width_orig;
} else {
$height = ($width / $width_orig) * $height_orig;
}
// Resample
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($path.$filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// Output
imagejpeg($image_p, null, 100);
// Imagedestroy
imagedestroy ($image_p);
?>
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/410-0.html
注:关于php 动态生成缩略图并输出显示的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:缩略图
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。