时间:2021-05-26
本文实例讲述了PHP实现的自定义图像居中裁剪函数。分享给大家供大家参考,具体如下:
图像居中裁减的大致思路:
1.首先将图像进行缩放,使得缩放后的图像能够恰好覆盖裁减区域。(imagecopyresampled — 重采样拷贝部分图像并调整大小)
2.将缩放后的图像放置在裁减区域中间。(imagecopy — 拷贝图像的一部分)
3.裁减图像并保存。(imagejpeg | imagepng | imagegif — 输出图象到浏览器或文件)
具体代码:
//==================缩放裁剪函数====================/** * 居中裁剪图片 * @param string $source [原图路径] * @param int $width [设置宽度] * @param int $height [设置高度] * @param string $target [目标路径] * @return bool [裁剪结果] */function image_center_crop($source, $width, $height, $target){ if (!file_exists($source)) return false; switch (exif_imagetype($source)) { case IMAGETYPE_JPEG: $image = imagecreatefromjpeg($source); break; case IMAGETYPE_PNG: $image = imagecreatefrompng($source); break; case IMAGETYPE_GIF: $image = imagecreatefromgif($source); break; } if (!isset($image)) return false; $target_w = $width; $target_h = $height; $source_w = imagesx($image); $source_h = imagesy($image); $judge = (($source_w / $source_h) > ($target_w / $target_h)); $resize_w = $judge ? ($source_w * $target_h) / $source_h : $target_w; $resize_h = !$judge ? ($source_h * $target_w) / $source_w : $target_h; $start_x = $judge ? ($resize_w - $target_w) / 2 : 0; $start_y = !$judge ? ($resize_h - $target_h) / 2 : 0; $resize_img = imagecreatetruecolor($resize_w, $resize_h); imagecopyresampled($resize_img, $image, 0, 0, 0, 0, $resize_w, $resize_h, $source_w, $source_h); $target_img = imagecreatetruecolor($target_w, $target_h); imagecopy($target_img, $resize_img, 0, 0, $start_x, $start_y, $resize_w, $resize_h); if (!file_exists(dirname($target))) mkdir(dirname($target), 0777, true); switch (exif_imagetype($source)) { case IMAGETYPE_JPEG: imagejpeg($target_img, $target); break; case IMAGETYPE_PNG: imagepng($target_img, $target); break; case IMAGETYPE_GIF: imagegif($target_img, $target); break; }// return boolval(file_exists($target));//PHP5.5以上可用boolval()函数获取返回的布尔值 return file_exists($target)?true:false;//兼容低版本PHP写法}//==================函数使用方式====================// 原始图片的路径$source = '../source/img/middle.jpg';$width = 480; // 裁剪后的宽度$height = 480;// 裁剪后的高度// 裁剪后的图片存放目录$target = '../source/temp/resize.jpg';// 裁剪后保存到目标文件夹if (image_center_crop($source, $width, $height, $target)) { echo "原图1440*900为:<img src='$source'>"; echo "<hr>"; echo "修改后图片480*480为:<img src='$target'>";}运行效果:
原图1440*900为:
同理,480*320,、800*600等尺寸的图片只需修改相应参数即可。
附:代码测试中遇到的问题
报错:call an undefined function exif_imagetype()
解决方法:
打开扩展 extension=php_exif.dll
并将extension=php_mbstring.dll ,放到extension=php_exif.dll前边
另:boolval()函数为PHP5.5版本以上才能使用的函数,本文测试代码中为兼容低版本,使用如下语句代替:
return file_exists($target)?true:false;PS:这里再为大家推荐几款相关的图片在线工具供大家参考使用:
在线图片格式转换(jpg/bmp/gif/png)工具:
http://tools.jb51.net/aideddesign/picext
在线PS图像处理工具:
http://tools.jb51.net/aideddesign/webps
ICO图标在线生成工具:
http://tools.jb51.net/aideddesign/ico_img
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP图形与图片操作技巧汇总》、《PHP网络编程技巧总结》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》及《PHP基本语法入门教程》
希望本文所述对大家PHP程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了Flutter通过Clipper实现各种自定义形状的示例代码,分享给大家,具体如下:ClipOval圆形裁剪ClipOval(child:SizedB
本文介绍了PHP图片裁剪与缩放示例,废话不多少,具体代码如下:/**exif_imagetype--判断一个图像的类型*功能说明:函数功能是把一个图像裁剪为任意
图像滤波在opencv中可以有多种实现形式自定义滤波如使用3×3的掩模:对图像进行处理.使用函数filter2D()实现#includeusingnamespa
一番测试下来,雪①找到了自己觉得方便的方法,特记录在此。1、因为要用到自定义标签,所以首先要在eclassuserfun.php加入一个自定义函数,即复制代码代
简介相机模块库,自定义相机,通过简单的调用即可实现拍照、图片裁剪、录像及录像抓拍功能;实现图片压缩,减少图片体积;自定义相机可避免使用系统相机导致的照片或视频体