在PHP中动态生成带有水印的图像缩略图

时间:2010-07-27 11:23:27

标签: php image thumbnails watermark

我正在寻找PHP类(解决方案)来动态生成带有水印的图像缩略图。有什么想法吗?

2 个答案:

答案 0 :(得分:1)

我已成功使用此代码将文本添加到(缩略图)图像:

(请注意,您需要提供字体)

function createImage($in_filename, $out_filename, $width, $height)
{
    $src_img = ImageCreateFromJpeg($in_filename);

    $old_x = ImageSX($src_img);
    $old_y = ImageSY($src_img);
    $dst_img = ImageCreateTrueColor($width, $height);
    ImageCopyResampled($dst_img, $src_img, 0, 0, 0, 0, $width, $height, $old_x, $old_y);

    addWatermark($dst_img);

    ImageJpeg($dst_img, $out_filename, 80);

    ImageDestroy($dst_img);
    ImageDestroy($src_img);
}

function addWatermark($image)
{
    $text = "watermark text";

    $font = realpath($_SERVER["DOCUMENT_ROOT"] . "/code/COURBD.TTF"); // case sensitive
    if ($font == false) return;

    $fontSize = 11;
    $borderOffset = 4;

    $dimensions = ImageTtfBBox($fontSize, 0, $font, $text . "@");
    $lineWidth = ($dimensions[2] - $dimensions[0]);

    $textX = (ImageSx($image) - $lineWidth) / 2;
    $textY = $borderOffset - $dimensions[7];

    $white = ImageColorAllocate($image, 240, 240, 240);
    ImageTtfText($image, $fontSize, 0, $textX, $textY, $white, $font, $text);
}

欢迎反馈。

答案 1 :(得分:0)

您可以使用imagecopyresampled()功能执行此操作。这是一个简单明了的向缩略图添加水印的教程。您还可以使用imagettftext()函数将字体用作水印

教程链接: http://www.phpjabbers.com/phpexample.php?eid=20