PHP:使用透明bg从PNG获取实际图像大小

时间:2018-11-22 15:19:53

标签: php image png gd

我有带透明BG的图像,我需要用透明BG获得真实尺寸的图片...

(图像可以是500x500,但是图像中的图像可以是440x250,我需要获得此尺寸-440x250)。...在PHP和GD中如何实现?

谢谢

1 个答案:

答案 0 :(得分:0)

因此,实际图像大小是x侧的最后一个非透明像素-x侧的第一个非透明像素和y侧的相同像素。所以您只需要找到它们:)

然后透明的alpha是127:A value between 0 and 127. 0 indicates completely opaque while 127 indicates completely transparent.-http://php.net/manual/de/function.imagecolorallocatealpha.php-所以您在这里

<?php
$image = 'test.png';
$image = imagecreatefrompng($image);

$width = imagesx($image);
$height = imagesy($image);

$colors = array();

$x_max = $y_max = 0;
$x_min = $width;
$y_min = $height;
for ($y = 0; $y < $height; ++$y)
{
    for ($x = 0; $x < $width; ++$x)
    {
        $rgb = imagecolorat($image, $x, $y);
        $color = imagecolorsforindex($image, $rgb);

        if (127 !== $color['alpha']) {
            $x_min = min($x_min, $x);
            $x_max = max($x_max, $x);
            $y_min = min($y_min, $y);
            $y_max = max($y_max, $y);
        }
    } 
}

echo 'width: ' . ($x_max - $x_min) . PHP_EOL;
echo 'height: ' . ($y_max - $y_min) . PHP_EOL;

输出:

width: 180
height: 180