【问题标题】:Using GD in PHP, how can I make a transparent PNG watermark on PNG and GIF files ? (JPG files work fine)在 PHP 中使用 GD,如何在 PNG 和 GIF 文件上制作透明的 PNG 水印? (JPG文件工作正常)
【发布时间】:2011-05-25 03:59:09
【问题描述】:

我有一张图片(我们称之为原始图片),我想在其上为另一张图片加水印(我们称之为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 文件时,此代码才有效(良好 = 保持 徽标 的透明度)。
原始文件是 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 png transparency gd gif


【解决方案1】:

imagecopy 不支持使用带有 Alpha 通道的两个图像。 看看 imagecopymerge。

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

用户 cmets 部分中有很多示例,以及您想要的完整实现:​​

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

【讨论】:

  • 您链接到的完成的实现起到了作用。它写得非常糟糕,但是在重新编码之后 - 它用大约 5 行代码就可以很好地工作。谢谢
  • @Doron 你能发布你重新编码的版本吗?这将是我个人食谱的一个很好的补充;)
  • @Oliver-a 当然,我已经编辑了我的原始问题并将代码添加到其中。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-10-17
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-09-15
相关资源
最近更新 更多