티스토리 뷰

php

php 이미지 워터마크

xemaker 2017. 11. 23. 13:12
<?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));

 

//imagejpeg($im,"aa.png");

//png 파일을 imagejpeg 하면 이미지가 선명하지 않다.

//그래서 imagepng를 써준다.

imagepng($im,"aa.png");



// Output and free memory

header('Content-type: image/png');

imagepng($im);

imagedestroy($im);

?>

자세한 내용은 아래의 링크 참조
https://opentutorials.org/module/6/5137
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함