PHP将图像颜色更改为透明,然后用作蒙版

时间:2012-04-27 15:30:45

标签: php image image-processing

我正在尝试将图像的背景颜色从白色更改为透明,然后将其用作遮罩以放置另一个图像。 (不能透明,因为另一部分用作另一部分图像的掩模)...图层很有趣:)

完整代码:

<?
include '../includes/db.php';
include '../includes/checks.php';

$type = $_GET['t']; //shirt | shorts
$style = $_GET['s'];
$z = $_GET['z']; // home | away
$a = $_GET['a'];
$b = $_GET['b'];

$aR = hexdec($a['0'].$a['1']);
$aG = hexdec($a['2'].$a['3']);
$aB = hexdec($a['4'].$a['5']);
$bR = hexdec($b['0'].$b['1']);
$bG = hexdec($b['2'].$b['3']);
$bB = hexdec($b['4'].$b['5']);

// main top
$imgname = '../images/kits/test/'. $uTime .'.png';
$im = imagecreatetruecolor( 100, 100); 
$red = imagecolorallocate($im, $aR, $aG, $aB);
imagefill($im, 0, 0, $red);

$mask = imagecreatefrompng('../images/kits/test/6-space.png'); 
imagecopyresampled($im, $mask, 0, 0, 0, 0, imagesx($im), imagesy($im), imagesx($mask), imagesy($mask));
imagedestroy($mask);

$mask = imagecreatefrompng('../images/kits/test/4-shadows.png'); 
imagecopyresampled($im, $mask, 0, 0, 0, 0, imagesx($im), imagesy($im), imagesx($mask), imagesy($mask));
imagedestroy($mask);

$mask = imagecreatefrompng('../images/kits/test/1-tag.png'); 
imagecopyresampled($im, $mask, 0, 0, 0, 0, imagesx($im), imagesy($im), imagesx($mask), imagesy($mask));
imagedestroy($mask);

// design
$im2 = imagecreatetruecolor( 100, 100); 
$red = imagecolorallocate($im2, $bR, $bG, $bB);
imagefill($im2, 0, 0, $red);

$mask = imagecreatefrompng('../images/kits/test/5-logo.png'); 
imagecopyresampled($im2, $mask, 0, 0, 0, 0, imagesx($im2), imagesy($im2), imagesx($mask), imagesy($mask));
imagedestroy($mask);
imagecolortransparent($im2, imagecolorallocatealpha($im2, 0, 0, 0, 127));
imagealphablending($im2, false);
imagesavealpha($im2, true);
$white = imagecolorallocate($im2,255,255,255);
imagecolortransparent($im2, $white);

// merge and result
imagecopyresampled($im, $im2, 0, 0, 0, 0, imagesx($im), imagesy($im), imagesx($im2), imagesy($im2));
imagepng($im, $imgname);
imagedestroy($im2);
imagedestroy($im);
echo '<img src="', $imgname ,'">';
?>

1 个答案:

答案 0 :(得分:1)

使用Imagemagick的几种方法(第二个例子来自http://www.imagemagick.org/Usage/masking/

将图像中的所有白色更改为透明

convert input.jpg -matte -fuzz 1% -transparent rgb(255,255,255) mask.png

更改连接到左上角像素的图像中的所有白色。

convert input.jpg -alpha set -channel RGBA -fuzz 1% -fill none -floodfill +0+0 white mask.png

在php中使用如下:

exec("convert input.jpg -matte -fuzz 1% -transparent rgb\(255,255,255\) mask.png");

上面的命令正在改变白色rgb(255,255,255)实际上+ - 1%的rgb值变为透明