当前位置:   article > 正文

php 截取图片 透明背景且超出后无黑边_php 图片透明背景设置

php 图片透明背景设置

php 截取图片并设置背景为透明背景图

    public function cutImg($target_width,$target_height,$source_x,$source_y,$source_path)
    {
        $source_info = getimagesize($source_path); //获取图像信息

        $source_mime = $source_info['mime']; // 文件类型

        $cropped_width = $target_width;  //截取的宽

        $cropped_height = $target_height;  //截取的高

        switch ($source_mime)

        {
            case 'image/gif':

                $source_image = imagecreatefromgif($source_path);

                break;

            case 'image/jpeg':

                $source_image = imagecreatefromjpeg($source_path);

                break;

            case 'image/png':

                $source_image = imagecreatefrompng($source_path);

                break;

            default:

                return false;

                break;

        }


        imagesavealpha($source_image, true); // 保留源图片透明度
        $cropped_image = imagecreatetruecolor($cropped_width, $cropped_height);
        $color=imagecolorallocatealpha($cropped_image,0,0,0,127); //创建颜色
        imagefill($cropped_image, 0, 0, $color); //设置白底
        // 裁剪
        imagecopy($cropped_image, $source_image, 0, 0, $source_x, $source_y, $cropped_width,$cropped_height);
        $alpha = imagecolorallocatealpha($cropped_image, 0, 0, 0, 127);//透明
        imagecolortransparent($cropped_image,$alpha); //3.设置透明色
        imagefill($cropped_image, 0, 0, $alpha);
        //保存图片到本地
        $res = imagepng($cropped_image,'a.png');
    }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/634223
推荐阅读
相关标签
  

闽ICP备14008679号