问题:
用户需要将图像上传到网站并添加水印(徽标)添加到其中。水印应放置在显着位置,例如放在可见的角落。
解决方案:
要为上传到 PHP 网站的图像添加水印,您可以使用以下步骤:
<code class="php">// Load the stamp (watermark) and the photo to be watermarked $stamp = imagecreatefrompng('stamp.png'); $im = imagecreatefromjpeg('photo.jpeg'); // Set margins for the stamp and get its dimensions $marge_right = 10; $marge_bottom = 10; $sx = imagesx($stamp); $sy = imagesy($stamp); // Calculate the position of the stamp on the photo $x = imagesx($im) - $sx - $marge_right; $y = imagesy($im) - $sy - $marge_bottom; // Copy the stamp onto the photo imagecopy($im, $stamp, $x, $y, 0, 0, $sx, $sy); // Output the watermarked image and free memory header('Content-type: image/png'); imagepng($im); imagedestroy($im);</code>
此代码片段可以集成到您的 PHP 网站中,自动为上传的图像添加水印。
以上是如何使用PHP给图片添加水印?的详细内容。更多信息请关注PHP中文网其他相关文章!