-2

ユーザーが独自の透かしを追加できるようにしても問題ありませんか?正しいファイルをアップロードするにはどのフィルターを使用すればよいですか? 透かしは画像のみですか、それともテキストですか?

4

1 に答える 1

0

個人的には、ユーザーが独自の透かしを画像に追加できるようにする必要はないと思います。ただし、要件によって異なります。これは、アルファ チャネルを使用して PHP で実行できます。

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 に答える