Php Image Resize图片大小调整的函数代码


Posted in PHP onJanuary 17, 2011
function my_image_resize($src_file, $dst_file, $dst_width=32, $dst_height=32) { 
if($dst_width <1 || $dst_height <1) { 
echo "params width or height error !"; 
exit(); 
} 
if(!file_exists($src_file)) { 
echo $src_file . " is not exists !"; 
exit(); 
} $type=exif_imagetype($src_file); 
$support_type=array(IMAGETYPE_JPEG , IMAGETYPE_PNG , IMAGETYPE_GIF); 
if(!in_array($type, $support_type,true)) { 
echo "this type of image does not support! only support jpg , gif or png"; 
exit(); 
} 
switch($type) { 
case IMAGETYPE_JPEG : 
$src_img=imagecreatefromjpeg($src_file); 
break; 
case IMAGETYPE_PNG : 
$src_img=imagecreatefrompng($src_file); 
break; 
case IMAGETYPE_GIF : 
$src_img=imagecreatefromgif($src_file); 
break; 
default: 
echo "Load image error!"; 
exit(); 
} 
$src_w=imagesx($src_img); 
$src_h=imagesy($src_img); 
$ratio_w=1.0 * $dst_width/$src_w; 
$ratio_h=1.0 * $dst_height/$src_h; 
if ($src_w<=$dst_width && $src_h<=$dst_height) { 
$x = ($dst_width-$src_w)/2; 
$y = ($dst_height-$src_h)/2; 
$new_img=imagecreatetruecolor($dst_width,$dst_height); 
imagecopy($new_img,$src_img,$x,$y,0,0,$dst_width,$dst_height); 
switch($type) { 
case IMAGETYPE_JPEG : 
imagejpeg($new_img,$dst_file,100); 
break; 
case IMAGETYPE_PNG : 
imagepng($new_img,$dst_file); 
break; 
case IMAGETYPE_GIF : 
imagegif($new_img,$dst_file); 
break; 
default: 
break; 
} 
} else { 
$dstwh = $dst_width/$dst_height; 
$srcwh = $src_w/$src_h; 
if ($ratio_w <= $ratio_h) { 
$zoom_w = $dst_width; 
$zoom_h = $zoom_w*($src_h/$src_w); 
} else { 
$zoom_h = $dst_height; 
$zoom_w = $zoom_h*($src_w/$src_h); 
} 
$zoom_img=imagecreatetruecolor($zoom_w, $zoom_h); 
imagecopyresampled($zoom_img,$src_img,0,0,0,0,$zoom_w,$zoom_h,$src_w,$src_h); 
$new_img=imagecreatetruecolor($dst_width,$dst_height); 
$x = ($dst_width-$zoom_w)/2; 
$y = ($dst_height-$zoom_h)/2+1; 
imagecopy($new_img,$zoom_img,$x,$y,0,0,$dst_width,$dst_height); 
switch($type) { 
case IMAGETYPE_JPEG : 
imagejpeg($new_img,$dst_file,100); 
break; 
case IMAGETYPE_PNG : 
imagepng($new_img,$dst_file); 
break; 
case IMAGETYPE_GIF : 
imagegif($new_img,$dst_file); 
break; 
default: 
break; 
} 
} 
}
PHP 相关文章推荐
PHP文件下载类
Dec 06 PHP
php木马攻击防御之道
Mar 24 PHP
PHP Memcached + APC + 文件缓存封装实现代码
Mar 11 PHP
通俗易懂的php防注入代码
Apr 07 PHP
PHP防盗链代码实例
Aug 27 PHP
php中的ini配置原理详解
Oct 14 PHP
PHP中通过fopen()函数访问远程文件示例
Nov 18 PHP
php遍历解析xml字符串的方法
May 05 PHP
windows server 2008/2012安装php iis7 mysql环境搭建教程
Jun 30 PHP
php无限极分类实现方法分析
Jul 04 PHP
laravel 时间格式转时间戳的例子
Oct 11 PHP
Laravel解决nesting level错误和隐藏index.php的问题
Oct 12 PHP
php生成随机密码的几种方法
Jan 17 #PHP
PHP校验ISBN码的函数代码
Jan 17 #PHP
PHP中用正则表达式清除字符串的空白
Jan 17 #PHP
php开发环境配置记录
Jan 14 #PHP
PHP文件读写操作之文件写入代码
Jan 13 #PHP
PHP文件读写操作之文件读取方法详解
Jan 13 #PHP
PHP目录函数实现创建、读取目录教程实例
Jan 13 #PHP
You might like
一个分页的论坛
2006/10/09 PHP
php编写一个简单的路由类
2011/04/13 PHP
thinkphp整合微信支付代码分享
2016/11/24 PHP
Json对象与Json字符串互转(4种转换方式)
2013/03/27 Javascript
JavaScript根据数据生成百分比图和柱状图的实例代码
2013/07/14 Javascript
JS获取网页属性包括宽、高等等
2014/04/03 Javascript
淘宝网提供的国内NPM镜像简介和使用方法
2014/04/17 Javascript
jQuery实现购物车表单自动结算效果实例
2015/08/10 Javascript
使用javaScript动态加载Js文件和Css文件
2015/10/24 Javascript
JS数组排序技巧汇总(冒泡、sort、快速、希尔等排序)
2015/11/24 Javascript
Js自定义多选框效果的实例代码
2017/07/05 Javascript
vue获取DOM元素并设置属性的两种实现方法
2017/09/30 Javascript
jQuery实现鼠标滑过商品小图片上显示对应大图片功能【测试可用】
2018/04/27 jQuery
jquery判断滚动条距离顶部的距离方法
2018/09/05 jQuery
vue element 生成无线级左侧菜单的实现代码
2019/08/21 Javascript
node.js express框架实现文件上传与下载功能实例详解
2019/10/15 Javascript
[59:42]Secret vs Alliacne 2019国际邀请赛小组赛 BO2 第一场 8.15
2019/08/17 DOTA
使用Python编写简单网络爬虫抓取视频下载资源
2014/11/04 Python
python获取文件后缀名及批量更新目录下文件后缀名的方法
2014/11/11 Python
pycharm 主题theme设置调整仿sublime的方法
2018/05/23 Python
Numpy中矩阵matrix读取一列的方法及数组和矩阵的相互转换实例
2018/07/02 Python
python tkinter组件摆放方式详解
2019/09/16 Python
Python退出时强制运行一段代码的实现方法
2020/04/29 Python
python 5个实用的技巧
2020/09/27 Python
Python实现七个基本算法的实例代码
2020/10/08 Python
Under Armour美国官网:美国知名高端功能性运动品牌
2016/09/05 全球购物
蔻驰西班牙官网:COACH西班牙
2019/01/16 全球购物
求网格中的黑点分布
2013/11/06 面试题
非常详细的C#面试题集
2016/07/13 面试题
init进程的作用
2012/04/12 面试题
仓库组长岗位职责
2014/01/29 职场文书
商务专员岗位职责范本
2014/06/29 职场文书
2014最新离职证明范本
2014/09/12 职场文书
分家协议书范本
2016/03/22 职场文书
2019学子的答谢词范本!
2019/07/05 职场文书
教你做个可爱的css滑动导航条
2021/06/15 HTML / CSS