gpt4 book ai didi

php - Imagick - 将黑色背景设为白色

转载 作者:行者123 更新时间:2023-12-04 03:11:52 24 4
gpt4 key购买 nike

我正在使用以下代码在另一个图像上屏蔽一个图像。在输出时,它给了我一个黑色背景的图像。

但我需要白色背景或透明背景。

以下是我用来将一个图像屏蔽在另一个图像上的代码。

<?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;
?>

最佳答案

诀窍是使用: $im = $im->flattenImages(); :

<?php
$im = new Imagick($filename);

$im->setImageBackgroundColor('#ffffff');
$im = $im->flattenImages();

$im->setImageFormat("jpeg");
$im->setImageCompressionQuality(95);
$im->writeImage($filename);

关于php - Imagick - 将黑色背景设为白色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17970421/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com