問題:
ユーザーは画像を Web サイトにアップロードし、透かしを入れる必要があります(ロゴ)が追加されました。透かしは、目立つ隅など、目立つ場所に配置する必要があります。
解決策:
PHP Web サイトにアップロードされた画像に透かしを追加するには、次の手順を使用できます:
<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 Web サイトに統合して、アップロードされた画像に透かしを自動的に追加できます。
以上がPHP を使用して画像に透かしを追加するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。