我正在使用此代碼來創建水印。 $image = '1.jpg';
$overlay = 'stamp.png';
$opacity = "20";
if (!file_exists($image)) {
die("Image does not exist.");
}
// Set offset from bottom-right cor
我想爲圖像加水印並保存。這裏是我使用它的代碼。這裏是輸出圖像並將輸出存儲到文件中。我想保存它而不輸出它。 // Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('stamp.png');
$im = imagecreatefromjpeg('proverbs.jpeg');