php - 使用 PHP 的透明圆形裁剪图像

标签 php image-processing gd

我想使用 PHP 裁剪圆形图像,但我的新图像似乎有一些透明像素。当然,我只希望椭圆的外部区域具有透明背景

我的代码如下:

        $image = imagecreatetruecolor($this->dst_w, $this->dst_h);
        imagealphablending($image,true);
        imagecopy ( $image , $image_s , 0, 0, $this->src_x, $this->src_y, $this->dst_w, $this->dst_h );
        $mask = imagecreatetruecolor($this->src_x, $this->src_y);
        $mask = imagecreatetruecolor($this->dst_w, $this->dst_h);
        $transparent = imagecolorallocate($mask, 255, 0, 0);
        imagecolortransparent($mask, $transparent);
        imagefilledellipse($mask, $this->dst_w/2, $this->dst_h/2, $this->dst_w, $this->dst_h, $transparent);
        $red = imagecolorallocate($mask, 0, 0, 0);
        imagecopymerge($image, $mask, 0, 0, 0, 0, $this->dst_w, $this->dst_h,100);
        imagecolortransparent($image, $red);
        imagefill($image,0,0, $red);

        if ($ext=="jpg" || $ext=="jpeg") {
            imagejpeg($image, $this->croppedImage);
        } else if ($ext=="png") {
            imagepng($image, $this->croppedImage);
        }           
        imagedestroy($image);
        imagedestroy($mask);
        // <------- END generate cropped Image ------->

        // <------- START generate transparent Image ------->               
        $this->generateTransparentImage('circle');

……

实际生成的图像示例如下: enter image description here

编辑:generateTransparentImage 函数与上面列出的代码无关;此函数生成此图像: http://s7.postimage.org/byybq9163/Koala7_500x375_c_transparent.png

最佳答案

有几点需要注意:

正如@DainisAbols 所建议的,最好使用不寻常的颜色来提高透明度。在这里,您使用的是黑色:

    $red = imagecolorallocate($mask, 0, 0, 0);
    imagecopymerge($image, $mask, 0, 0, 0, 0, $this->dst_w, $this->dst_h,100);
    imagecolortransparent($image, $red);

即使您的 var 名为红色,您的 R-G-B 值也是 0-0-0。不常见的颜色包括 Shiny 的蓝色 (0-0-255)、 Shiny 的绿色 (0-255-0)、 Shiny 的黄色 (255-255-0)、 Shiny 的青色 (0-255-255) 和 Shiny 的粉红色 (255-0- 255).红色在任何地方都很常见,而且不那么浮华,所以我把它排除在那些特殊的颜色之外。

然后,即使您此处的图片都是真彩色图片,为每张图片分配一种颜色也是一种很好的做法。在上面的示例中,您为 $mask 创建了一个包含黑色的 $red 变量,但您在 $image 中将其用作透明颜色.

最后,您要绘制一个与图像大小具有相同半径的椭圆,因此您需要imagefill 图像的每个角,而不仅仅是左上角的角。在您的示例中它有效,但这只是因为您选择黑色作为透明色。

这是一个完整的实现。

<?php

class CircleCrop
{

    private $src_img;
    private $src_w;
    private $src_h;
    private $dst_img;
    private $dst_w;
    private $dst_h;

    public function __construct($img)
    {
        $this->src_img = $img;
        $this->src_w = imagesx($img);
        $this->src_h = imagesy($img);
        $this->dst_w = imagesx($img);
        $this->dst_h = imagesy($img);
    }

    public function __destruct()
    {
        if (is_resource($this->dst_img))
        {
            imagedestroy($this->dst_img);
        }
    }

    public function display()
    {
        header("Content-type: image/png");
        imagepng($this->dst_img);
        return $this;
    }

    public function reset()
    {
        if (is_resource(($this->dst_img)))
        {
            imagedestroy($this->dst_img);
        }
        $this->dst_img = imagecreatetruecolor($this->dst_w, $this->dst_h);
        imagecopy($this->dst_img, $this->src_img, 0, 0, 0, 0, $this->dst_w, $this->dst_h);
        return $this;
    }

    public function size($dstWidth, $dstHeight)
    {
        $this->dst_w = $dstWidth;
        $this->dst_h = $dstHeight;
        return $this->reset();
    }

    public function crop()
    {
        // Intializes destination image
        $this->reset();

        // Create a black image with a transparent ellipse, and merge with destination
        $mask = imagecreatetruecolor($this->dst_w, $this->dst_h);
        $maskTransparent = imagecolorallocate($mask, 255, 0, 255);
        imagecolortransparent($mask, $maskTransparent);
        imagefilledellipse($mask, $this->dst_w / 2, $this->dst_h / 2, $this->dst_w, $this->dst_h, $maskTransparent);
        imagecopymerge($this->dst_img, $mask, 0, 0, 0, 0, $this->dst_w, $this->dst_h, 100);

        // Fill each corners of destination image with transparency
        $dstTransparent = imagecolorallocate($this->dst_img, 255, 0, 255);
        imagefill($this->dst_img, 0, 0, $dstTransparent);
        imagefill($this->dst_img, $this->dst_w - 1, 0, $dstTransparent);
        imagefill($this->dst_img, 0, $this->dst_h - 1, $dstTransparent);
        imagefill($this->dst_img, $this->dst_w - 1, $this->dst_h - 1, $dstTransparent);
        imagecolortransparent($this->dst_img, $dstTransparent);

        return $this;
    }

}

演示:

$img = imagecreatefromjpeg("test4.jpg");
$crop = new CircleCrop($img);
$crop->crop()->display();

结果:

enter image description here

关于php - 使用 PHP 的透明圆形裁剪图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12953262/

相关文章:

matlab - 使用 MatLab 按不同强度分割对象

php生成图像 curl 箭头

php - Gd 已安装,但 "Call to undefined function imagecreatefromjpeg()"

php - Flex - 如何将 Flex DropDownList 的所选项目的 ID 发送到服务器?

python - 如何确定视频的角速度?

php - HTML 中的 Ruby 类似于 PHP

JavaCV内存不足,分配内存失败

php - exif 数据中没有方向 - PHP 图像上传

php - PEAR错误代码列表

php - laravel 在循环中附加 wheres 以执行 AND 过滤