gpt4 book ai didi

php - 在 PHP 中使用 GD,如何在 PNG 和 GIF 文件上制作透明的 PNG 水印? (JPG 文件工作正常)

转载 作者:可可西里 更新时间:2023-11-01 12:18:42 26 4
gpt4 key购买 nike

我有一张图片(我们称它为原始图片),我想在上面加水印另一张图片(我们称它为 Logo )。
Logo 是透明的 PNG,而原始图像 可以是 png、jpg 或 gif。
我有以下代码:

function watermarkImage($originalFileContents, $originalWidth, $originalHeight) {
$logoImage = imagecreatefrompng('logo.png');
imagealphablending($logoImage, true);

$logoWidth = imagesx($logoImage);
$logoHeight = imagesy($logoImage);

$originalImage = imagecreatefromstring($originalFileContents);

$destX = $originalWidth - $logoWidth;
$destY = $originalHeight - $logoHeight;

imagecopy(
// source
$originalImage,
// destination
$logoImage,
// destination x and y
$destX, $destY,
// source x and y
0, 0,
// width and height of the area of the source to copy
$logoWidth, $logoHeight
);
imagepng($originalImage);
}

仅当原始图像是 JPG 文件时,此代码才有效(良好=保持 Logo 的透明度)。
原始文件是 GIF 或 PNG 时, Logo 具有纯白色背景,这意味着透明度不起作用。

为什么?我需要更改什么才能正常工作?
谢谢

更新:
这是我重新编码的版本:

function generate_watermarked_image($originalFileContents, $originalWidth, $originalHeight, $paddingFromBottomRight = 0) {
$watermarkFileLocation = 'watermark.png';
$watermarkImage = imagecreatefrompng($watermarkFileLocation);
$watermarkWidth = imagesx($watermarkImage);
$watermarkHeight = imagesy($watermarkImage);

$originalImage = imagecreatefromstring($originalFileContents);

$destX = $originalWidth - $watermarkWidth - $paddingFromBottomRight;
$destY = $originalHeight - $watermarkHeight - $paddingFromBottomRight;

// creating a cut resource
$cut = imagecreatetruecolor($watermarkWidth, $watermarkHeight);

// copying that section of the background to the cut
imagecopy($cut, $originalImage, 0, 0, $destX, $destY, $watermarkWidth, $watermarkHeight);

// placing the watermark now
imagecopy($cut, $watermarkImage, 0, 0, 0, 0, $watermarkWidth, $watermarkHeight);

// merging both of the images
imagecopymerge($originalImage, $cut, $destX, $destY, 0, 0, $watermarkWidth, $watermarkHeight, 100);
}

最佳答案

imagecopy 不支持使用两个带 alpha channel 的图像。看看 imagecopymerge。

http://php.net/manual/en/function.imagecopymerge.php

网友评论区有很多例子,还有你想要的实现:

http://www.php.net/manual/en/function.imagecopymerge.php#92787

关于php - 在 PHP 中使用 GD,如何在 PNG 和 GIF 文件上制作透明的 PNG 水印? (JPG 文件工作正常),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4437557/

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