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

9

我有一张图片(我们称之为原始图片),我想在上面加一个水印图片(我们称之为标志)。
标志是一个透明的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文件时,这段代码才能正常工作(好的 = 保持标志的透明度)。
当原始文件是GIF或PNG时,标志会有一个纯白色的背景,这意味着透明度无法正常工作。

为什么?我需要改变什么才能让它正常工作?
谢谢

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

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);
}

这可能会有所帮助 PHP+GD:imagecopymerge 无法保留 PNG 透明度 - Mike
@doron 感谢您提供的示例代码。 - vee
1个回答

6

你提供的已完成实现起到了作用。虽然它的编写质量很差,但经过重新编码后,只需大约5行代码就能完美运行。谢谢! - Doron
@Doron,你可以发布你的记录版本吗?这将是我个人食谱的好补充 ;) - Oliver A.
@Oliver-a 当然,我已经编辑了我的原始问题并将代码添加到其中。 - Doron

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接