문제:
사용자는 웹사이트에 이미지를 업로드하고 워터마크를 가져야 합니다. (로고)가 추가되었습니다. 워터마크는 눈에 띄는 모서리 등 눈에 띄게 배치해야 합니다.
해결책:
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!