图像GD调整大小问题

时间:2017-07-05 21:24:34

标签: php html image png gd

所以我试图拍摄两张大图像(但后来我将整理6幅图像),将它们调整为x,y宽度,我从photoshop中取出的高度,并将它们合并成一个460 x 230大小的图像。

这是我使用

的代码
<?php

$dest = imagecreatefrompng('https://blzgdapipro-a.akamaihd.net/hero/ana/career-portrait.png');
$src = imagecreatefrompng('https://blzgdapipro-a.akamaihd.net/game/rank-icons/season-2/rank-6.png');

imagealphablending($dest, false);
imagesavealpha($dest, true);

imagealphablending($src, false);
imagesavealpha($src, true);


//imagescale($dest, 396, 161.92);
$some = imagecreate(460, 230);

$dest2 = resize($dest, 396, 162);
$src2 = resize($src, 79.19, 79.19);

//imagecopyresized($dest, $dest, 0, 0, 0, 0, 396, 161.92, 1098, 449);
imagecopyresized($src, $src, 10, 10, 0, 0, 79.19, 79.19, 256, 256);
//$img2 = imagecopymerge($dest, $src, 0, 0, 0, 0, 256, 256, 100); //have to play with these numbers for it to work for you, etc.
imagecopymerge($dest2, $src2, 0, 0, 0, 0, 460, 230, 50);

header('Content-Type: image/png');
imagepng($dest, 'merged2.png');
imagepng($dest2);
//file_put_contents('merged.png', $contents);
imagedestroy($dest);
imagedestroy($src);
imagedestroy($some);
imagedestroy($dest2);
imagedestroy($src2);
imagedestroy($img2);
//imagedestroy($then);

function resize($img, $width, $height, $stretch = false)
    {
        $temp = imagecreatetruecolor($width, $height);
        imagealphablending($temp, true);
        imagesavealpha($temp, true);

        $bg = imagecolorallocatealpha($temp, 0, 0, 0, 0); // Background color
        imagefill($temp, 0, 0, $bg);

        if ($stretch)
        {
            imagecopyresampled($temp, img, 0, 0, 0, 0, $width, $height, imagesx($img), imagesy($img));
        }
        else
        {
            if (imagesx($img) <= $width && imagesy($img) <= $height)
            {
                $fwidth = imagesx($img);
                $fheight = imagesy($img);
            }
            else
            {
                $wscale = $width / imagesx($img);
                $hscale = $height / imagesy($img);
                $scale = min($wscale, $hscale);
                $fwidth = $scale * imagesx($img);
                $fheight = $scale * imagesy($img);
            }
            imagecopyresampled($temp,
                $img,
                ($width - $fwidth) / 2, ($height - $fheight) / 2,
                0, 0,
                $fwidth, $fheight,
                imagesx($img), imagesy($img)
            );
        }
        return $temp;
    }

问题是渲染的图像非常褪色 因为这一行:

imagecopymerge($dest2, $src2, 0, 0, 0, 0, 460, 230, 50);

如果我将50(即PCT值)更改为100,则会显示一个带有黑色背景的图像(屏蔽另一个图像),但如果我将其更改为0,则仅显示另一个带有黑色背景的图像(掩盖其他图像) 如果该值为0或100,则显示的图像为全色。如何将这两个图像合并在一起,同时保持其透明度和颜色的活力?

1 个答案:

答案 0 :(得分:0)

而不是imagecopymerge使用imagecopy。复制时,您还需要正确指定源图像的尺寸:

$dest = imagecreatefrompng('https://blzgdapipro-a.akamaihd.net/hero/ana/career-portrait.png');
$src = imagecreatefrompng('https://blzgdapipro-a.akamaihd.net/game/rank-icons/season-2/rank-6.png');

$dest2 = resize($dest, 396, 162);
imagedestroy($dest);
$src2 = resize($src, 79, 79); // should be int not float.
imagedestroy($src);

// the last 2 params must match the width/height of the $src2 image.
imagecopy($dest2, $src2, 0, 0, 0, 0, 79, 79);
imagedestroy($src2);

header('Content-Type: image/png');
imagepng($dest2);

imagedestroy($dest2);

您无需更改$dest$src上的Alpha设置,因为它们未被渲染 - 您渲染在{{1}中创建并返回的新图像资源功能。因此,您需要稍微更改功能:

resize

<强> 编辑:

您最好只使用function resize($img, $width, $height, $stretch = false) { $temp = imagecreatetruecolor($width, $height); imagealphablending($temp, false); // changed to false. imagesavealpha($temp, true); ... 功能,而不是使用自己的imagescale功能:

resize