-
php图片裁剪函数
这篇文章主要为大家详细介绍了php图片裁剪函数,图片裁剪工具,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。
本文实例为大家分享了php图片裁剪函数的具体代码,供大家参考,具体内容如下:
- /*
- * 图片裁剪工具
- * 将指定文件裁剪成正方形
- * 以中心为起始向四周裁剪
- * @param $src_path string 源文件地址
- * @param $des_path string 保存文件地址
- * @param $des_w double 目标图片宽度
- * */
- function img_cut_square($src_path,$des_path,$des_w=100){
- $img_info = getimagesize($src_path);//获取原图像尺寸信息
- $img_width = $img_info[0];//原图宽度
- $img_height = $img_info[1];//原图高度
- $img_type = $img_info[2];//图片类型 1 为 GIF 格式、 2 为 JPEG/JPG 格式、3 为 PNG 格式
- if($img_type != 2 && $img_type != 3) return ;
- /*计算缩放尺寸*/
- if($img_height > $img_width){
- $scale_width = $des_w;//缩放宽度
- $scale_height = round($des_w / $img_width * $img_height);//缩放高度
- $src_y = round(($scale_height - $des_w)/2);
- $src_x = 0;
- }else{
- $scale_height = $des_w;
- $scale_width = round($des_w / $img_height * $img_width);
- $src_y = 0;
- $src_x = round(($scale_width - $des_w)/2);
- }
- $dst_ims = imagecreatetruecolor($scale_width, $scale_height);//创建真彩画布
- $white = imagecolorallocate($dst_ims, 255, 255, 255);
- imagefill($dst_ims, 0, 0, $white);
- if($img_type == 2){
- $src_im = @imagecreatefromjpeg($src_path);//读取原图像
- }else if($img_type == 3){
- $src_im = @imagecreatefrompng($src_path);//读取原图像
- }
- imagecopyresized($dst_ims, $src_im, 0, 0 ,0, 0 , $scale_width , $scale_height , $img_width,$img_height);//缩放图片到指定尺寸
- $dst_im = imagecreatetruecolor($des_w, $des_w);
- // $white = imagecolorallocate($dst_im, 255, 255, 255);
- // imagefill($dst_im, 0, 0, $white);
- imagecopy($dst_im, $dst_ims, 0, 0, $src_x, $src_y, $des_w, $des_w);//开始裁剪图片为正方形
- // imagecopyresampled($dst_im, $src_im, $src_x, $src_y, 0, 0, $real_width, $real_width,$img_width,$img_height);
- if($img_type == 2) {
- imagejpeg($dst_im, $des_path);//保存到文件
- }else if($img_type == 3){
- imagepng($dst_im,$des_path);
- }
- // imagejpeg($dst_im);//输出到浏览器
- imagedestroy($dst_im);
- imagedestroy($dst_ims);
- imagedestroy($src_im);
- }
原文链接:http://www.phpfensi.com/php/20211101/18329.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式