PHP用GD库生成高质量的缩略图片


Posted in PHP onMarch 09, 2011

以下是PHP源代码(ResizeImage.php)。

<?php 
$FILENAME="image.thumb"; 
// 生成图片的宽度 
$RESIZEWIDTH=400; 
// 生成图片的高度 
$RESIZEHEIGHT=400; function ResizeImage($im,$maxwidth,$maxheight,$name){ 
$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")){ 
$newim = imagecreatetruecolor($newwidth, $newheight); 
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); 
}else{ 
$newim = imagecreate($newwidth, $newheight); 
imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); 
} 
ImageJpeg ($newim,$name . ".jpg"); 
ImageDestroy ($newim); 
}else{ 
ImageJpeg ($im,$name . ".jpg"); 
} 
} 
if($_FILES['image']['size']){ 
if($_FILES['image']['type'] == "image/pjpeg"){ 
$im = imagecreatefromjpeg($_FILES['image']['tmp_name']); 
}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); 
} 
} 
?>

以下是测试代码(demo.php)
<?php 
include('ResizeImage.php'); 
if(!empty($_POST)){ 
echo($FILENAME.".jpg?cache=".rand(0,999999)); 
} 
?> 
<form name="test" action="?submit=true" enctype="multipart/form-data" method="post" > 
<input type="file" name="image" size="50" value="浏览"><p> 
<input type="submit" value="上传图片"> 
</form>
PHP 相关文章推荐
windows下PHP APACHE MYSQ完整配置
Jan 02 PHP
php MsSql server时遇到的中文编码问题
Jun 11 PHP
PHP Array交叉表实现代码
Aug 05 PHP
shell脚本作为保证PHP脚本不挂掉的守护进程实例分享
Jul 15 PHP
一个PHP针对数字的加密解密类
Mar 20 PHP
自定义session存储机制避免会话保持问题
Oct 08 PHP
浅谈php正则表达式中的非贪婪模式匹配的使用
Nov 25 PHP
php实现将数组转换为XML的方法
Mar 09 PHP
两种php给图片加水印的实现代码
Apr 18 PHP
Yii2简单实现多语言配置的方法
Jul 23 PHP
利用PHP自动生成印有用户信息的名片
Aug 01 PHP
/etc/php-fpm.d/www.conf 配置注意事项
Feb 04 PHP
php GeoIP的使用教程
Mar 09 #PHP
让PHP COOKIE立即生效,不用刷新就可以使用
Mar 09 #PHP
通过JavaScript或PHP检测Android设备的代码
Mar 09 #PHP
PHP中uploaded_files函数使用方法详解
Mar 09 #PHP
PHP $_FILES函数详解
Mar 09 #PHP
PHP中for与foreach的区别分析
Mar 09 #PHP
php模板中出现空行解决方法
Mar 08 #PHP
You might like
php google或baidu分页代码
2009/11/26 PHP
javascript,php获取函数参数对象的代码
2011/02/03 PHP
php中定时计划任务的实现原理
2013/01/08 PHP
Win2003+apache+PHP+SqlServer2008 配置生产环境
2014/07/29 PHP
destoon实现调用图文新闻的方法
2014/08/21 PHP
PHP脚本监控Nginx 502错误并自动重启php-fpm
2015/05/13 PHP
PHP数组的定义、初始化和数组元素的显示实现代码
2016/11/05 PHP
PHP new static 和 new self详解
2017/02/19 PHP
php检测mysql表是否存在的方法小结
2017/07/20 PHP
PHP实现的策略模式示例
2019/03/20 PHP
Prototype使用指南之dom.js
2007/01/10 Javascript
javascript 得到变量类型的函数
2010/05/19 Javascript
javascript垃圾收集机制与内存泄漏详细解析
2013/11/11 Javascript
transport.js和jquery冲突问题的解决方法
2015/02/10 Javascript
jquery实现页面关键词高亮显示的方法
2015/03/12 Javascript
轻量级javascript 框架Backbone使用指南
2015/07/24 Javascript
jquery实现简单合拢与展开网页面板的方法
2015/09/01 Javascript
Bootstrap实现导航栏的2种方式
2016/11/28 Javascript
Angular 作用域scope的具体使用
2017/12/11 Javascript
详解Webpack loader 之 file-loader
2018/11/07 Javascript
js实现简单放大镜效果
2020/03/07 Javascript
如何在 Vue 中使用 JSX
2021/02/14 Vue.js
[42:52]Optic vs Serenity 2018国际邀请赛淘汰赛BO3 第二场 8.22
2018/08/23 DOTA
跟老齐学Python之集合(set)
2014/09/24 Python
python 从csv读数据到mysql的实例
2018/06/21 Python
python TKinter获取文本框内容的方法
2018/10/11 Python
一行python实现树形结构的方法
2019/08/09 Python
Python 共享变量加锁、释放详解
2019/08/28 Python
Python异常原理及异常捕捉实现过程解析
2020/03/25 Python
在HTML5 canvas里用卷积核进行图像处理的方法
2018/05/02 HTML / CSS
欧洲、亚洲、非洲和拉丁美洲的度假套餐:Great Value Vacations
2019/03/30 全球购物
大学生写自荐信的技巧
2014/01/08 职场文书
学校领导四风问题整改措施思想汇报
2014/10/09 职场文书
2015年营业员工作总结
2015/04/23 职场文书
暑假打工感想
2015/08/07 职场文书
python制作图形界面的2048游戏, 基于tkinter
2021/04/06 Python