示例 #1 使用 Alpha 通道為圖像加水印
<?php
// 加載水印以及要加水印的圖像
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('photo.jpeg');
// 設置水印圖像的外邊距,并且獲取水印圖像的尺寸
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
// 利用圖像的寬度和水印的外邊距計算位置,并且將水印復制到圖像上
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));
// 輸出圖像并釋放內(nèi)存
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>