-2

允许用户添加自己的水印以及我应该使用什么过滤器来上传正确的文件是否可以。水印也只是图像或文字吗?

4

1 回答 1

0

我个人认为让用户在图像中添加自己的水印真的没有必要。但这取决于您的要求。它可以通过 PHP 使用 alpha 通道来完成。

PHP手册中的一个很好的例子:

<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('photo.jpeg');

// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);

// Copy the stamp image onto our photo using the margin offsets and the photo 
// width to calculate positioning of the stamp. 
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));

// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>

样本输出:

在此处输入图像描述

希望这可以帮助!

于 2013-07-07T16:16:41.783 回答