我正在使用以下代码在另一张图像上掩盖一张图像。在输出时,它给了我一张黑色背景的图像。
但我需要白色背景或透明背景。
以下是我用来遮盖另一张图像的代码。
<?PHP
$destination_path = getcwd().DIRECTORY_SEPARATOR;
$im1="image1.png";
$im2="image2.png";
$i1="$destination_path$im1";
$i2="$destination_path$im2";
$base = new Imagick($i1);
$mask = new Imagick($i2);
// Setting same size for all images
$base->resizeImage(274, 275, Imagick::FILTER_LANCZOS, 1);
// Copy opacity mask
$base->compositeImage($mask, Imagick::COMPOSITE_DSTIN, 0, 0, Imagick::CHANNEL_ALPHA);
$base->writeImage('output.png');
header("Content-Type: image/png");
echo $base;
?>