이미지에 워터마크 추가하기 > 그누보드5 팁자료실

그누보드5 팁자료실

이미지에 워터마크 추가하기 정보

이미지에 워터마크 추가하기

본문

<?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 이미지가 겹쳐져 워터마크 기능이 됩니다.

 

 

 

추천
5
  • 복사

댓글 4개

팁을 알려주시려면 적용방법등 자세히 알려주시면 감사하겠습니다~
저러케 만 적어주시면..........
초보분들에게는 적용에 무리가 있다고 보여집니다....
© SIRSOFT
현재 페이지 제일 처음으로