我们正在尝试实现一个 PHP 服务器脚本,该脚本将允许用户更改部分产品图像的颜色。例如,如果您有一把带红色织物座椅的木椅,并且只想更改织物颜色。
我们之前在 Flash 中实现了一个系统;产品图像是 JPG,颜色可编辑区域由存储为具有透明度的单独 PNG 的掩码定义。使用蒙版的 alpha 值制作原始图像的副本,并将其放置在原始图像上方的新图层上,实际上是将可编辑颜色的区域复制到新图层上。然后用户可以对这个新层进行颜色编辑。
由于我们已经有了 PNG 掩码,因此我们正尝试在 PHP 中完成相同的功能,以使其可供更多最终用户使用。我尝试从PHP GD 修改脚本 Use one image to mask another image, including contrast,并提出以下
<?php
// Load source and mask
$source = imagecreatefromjpeg( 'source' );
$mask = imagecreatefrompng( 'destination' );
// Apply mask to source
imagealphamask( $source, $mask );
// Output
header( "Content-type: image/png");
imagepng( $source );
function imagealphamask( &$picture, $mask ) {
// Get sizes and set up new picture
$xSize = imagesx( $picture );
$ySize = imagesy( $picture );
$newPicture = imagecreatetruecolor( $xSize, $ySize );
imagesavealpha( $newPicture, true );
imagefill( $newPicture, 0, 0, imagecolorallocatealpha( $newPicture, 0, 0, 0, 127 ) );
// Resize mask if necessary
//if( $xSize != imagesx( $mask ) || $ySize != imagesy( $mask ) ) {
// $tempPic = imagecreatetruecolor( $xSize, $ySize );
// imagecopyresampled( $tempPic, $mask, 0, 0, 0, 0, $xSize, $ySize, imagesx( $mask ), imagesy( $mask ) );
// imagedestroy( $mask );
// $mask = $tempPic;
//}
// Perform pixel-based alpha map application
for( $x = 0; $x < $xSize; $x++ ) {
for( $y = 0; $y < $ySize; $y++ ) {
$alpha = imagecolorsforindex( $mask, imagecolorat( $mask, $x, $y ) );
$alpha = $alpha['alpha'];
$color = imagecolorsforindex( $picture, imagecolorat( $picture, $x, $y ) );
//preserve alpha by comparing the two values
//if ($color['alpha'] > $alpha)
//$alpha = $color['alpha'];
//kill data for fully transparent pixels
if ($alpha == 127) {
$color['red'] = 0;
$color['blue'] = 0;
$color['green'] = 0;
}
imagesetpixel( $newPicture, $x, $y, imagecolorallocatealpha( $newPicture, $color[ 'red' ], $color[ 'green' ], $color[ 'blue' ], $alpha ) );
}
}
//TODO: colorize the new layer in some way here, e.g. imagefilter($newPicture, IMG_FILTER_COLORIZE, 150, 90, 0);
//place the new layer above the original image
imagecopymerge($picture,$newPicture,0,0,0,0,$xSize,$ySize,100);
}
?>
我不知道任何 PHP,但上面的脚本似乎应该做我们想要的。相反,它会切掉正确的区域,但用黑色包围它。
我真的不知道问题是什么,除非它与源图像是 JPG 而不是 PNG 有关。我尝试转换为真彩色,但不影响输出。
另外......这段代码太慢了。生成图像需要五秒钟以上。我们应该采取完全不同的方法/使用不同的框架吗?我对 Web 开发一无所知,但我被分配了这项工作并且必须完成它。