PHP GD imagecopyresampled()并将其水平翻转

时间:2011-10-13 21:28:41

标签: php image gd image-manipulation

我正在使用imagecopyresampled()从另一个PNG图像渲染PNG图像。现在我想要将图像的某些部分水平翻转,所以我试过这个:

//horizontal
$src_x     = $width - 1;
$src_width = -$width;

imagecopyresampled(
    $imgdest, $imgsrc, 0, 0, $src_x, $src_y , $width, $height
    , $src_width, $src_height
);

取自a user-comment from the PHP Manual

在我的情况下(我将原始图像中的大量碎片复制到新图像中)不起作用,而是复制另一张图像。有人有解决方案吗?

3 个答案:

答案 0 :(得分:2)

我知道这有点晚了,但我自己也在寻找这个解决方案,只是找到了需要的代码......

function image_flip($img, $type=''){
    $width  = imagesx($img);
    $height = imagesy($img);
    $dest   = imagecreatetruecolor($width, $height);
    switch($type){
        case '':
            return $img;
        break;
        case 'vert':
            for($i=0;$i<$height;$i++){
                imagecopy($dest, $img, 0, ($height - $i - 1), 0, $i, $width, 1);
            }
        break;
        case 'horiz':
            for($i=0;$i<$width;$i++){
                imagecopy($dest, $img, ($width - $i - 1), 0, $i, 0, 1, $height);
            }
        break;
        case 'both':
            for($i=0;$i<$width;$i++){
                imagecopy($dest, $img, ($width - $i - 1), 0, $i, 0, 1, $height);

            }
            $buffer = imagecreatetruecolor($width, 1);
            for($i=0;$i<($height/2);$i++){
                imagecopy($buffer, $dest, 0, 0, 0, ($height - $i -1), $width, 1);
                imagecopy($dest, $dest, 0, ($height - $i - 1), 0, $i, $width, 1);
                imagecopy($dest, $buffer, 0, $i, 0, 0, $width, 1);
            }
            imagedestroy($buffer);
        break;
    }
    return $dest;
}

答案 1 :(得分:0)

在我自己找到答案后这么多年,所以我只是想让其他人知道。

这很简单,例如:

而不是:

imagecopy($output, $input, 8, 20, 4, 20, 4, 12)

我会用:

imagecopyresampled($output, $input, 8, 20, (8 - 1), 20, 4, 12, 0 - 4, 12);

将图像的一部分水平翻转。

答案 2 :(得分:0)

我用那个

 imageflip ( resource $image , int $mode ) : bool

https://www.php.net/manual/es/function.imageflip.php

相关问题