Php Image Resize图片大小调整的函数代码
2015-01-24信息快讯网
php下可以将图片大小调整的函数代码,需要的朋友可以参考下。
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 imagecreatefrombmp 从BMP文件或URL新建一图像
php提示Call-time pass-by-reference has been deprecated in的解决方法[已测]
redis 队列操作的例子(php)
PHP中return 和 exit 、break和contiue 区别与用法
PHP中SESSION使用中的一点经验总结
simplehtmldom Doc api帮助文档
php preg_filter执行一个正则表达式搜索和替换
MySQL时间字段究竟使用INT还是DateTime的说明
php中echo()和print()、require()和include()等易混淆函数的区别
修改PHP的memory_limit限制的方法分享
php addslashes及其他清除空格的方法是不安全的
Trying to clone an uncloneable object of class Imagic的解决方法
Uncaught exception com_exception with message Failed to create COM object
php读取mysql乱码,用set names XXX解决的原理分享
php中XMLHttpRequest(Ajax)不能设置自定义的Referer的解决方法
php下连接mssql2005的代码
php生成随机密码的几种方法
php simplexmlElement操作xml的命名空间实现代码
从php核心代码分析require和include的区别
深入理解PHP之require/include顺序 推荐
PHP中foreach循环中使用引用要注意的地方
PHP中simplexml_load_string函数使用说明
Wordpress 相册插件 NextGEN-Gallery 添加目录将中文转为拼音的解决办法
hessian 在PHP中的使用介绍
php foreach 参数强制类型转换的问题
Notice: Undefined index: page in E:\PHP\test.php on line 14
《PHP编程最快明白》第四讲:日期、表单接收、session、cookie
理解php原理的opcodes(操作码)
php set_magic_quotes_runtime() 函数过时解决方法
php trim 去除空字符的定义与语法介绍
php set_time_limit(0) 设置程序执行时间的函数
php imagecreatetruecolor 创建高清和透明图片代码小结
php getimagesize 上传图片的长度和宽度检测代码