이미지에 워터마크 추가하기
<?php
// Load the stamp and the photo to apply the watermark to
$stamp = imagecreatefrompng('text.png');
$im = imagecreatefrompng('original.png');
// Set the margins for the stamp and get the height/width of the stamp image
$marge_right = 10;
$marge_bottom = 10;
$sx = imagesx($stamp);
$sy = imagesy($stamp);
// Copy the stamp image onto our photo using the margin offsets and the photo
// width to calculate positioning of the stamp.
imagecopy($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp));
// Output and free memory
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
$stamp = imagecreatefrompng('text.png');
$im = imagecreatefrompng('original.png');
오리지날 이미지와 text.png 이미지가 겹쳐져 워터마크 기능이 됩니다.
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기
댓글 4개
저러케 만 적어주시면..........
초보분들에게는 적용에 무리가 있다고 보여집니다....
저같은 초보한테는
보고도 못먹는 그림의 떡이네요 ㅠㅠ