• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    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);
    }
    
    

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • PHP的mysqli_set_charset()函数讲解
    • PHP的mysqli_select_db()函数讲解
    • PHP的mysqli_rollback()函数讲解
    • php中的explode()函数实例介绍
    • PHP内置函数生成随机数实例
    • PHP parse_ini_file函数的应用与扩展操作示例
    • PHP实现函数内修改外部变量值的方法示例
    • php使用array_chunk函数将一个数组分割成多个数组
    • PHP格式化显示时间date()函数代码
    • PHP的mysqli_sqlstate()函数讲解
    上一篇:php+js实现裁剪任意形状图片
    下一篇:PHP结合Ffmpeg快速搭建流媒体服务的实践记录
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    php图片裁剪函数 php,图片,裁剪,函数,php,图片,