<?
$fontsize = 30;
$string = "admin";
$font = './ARIALUNI_3.TTF';
$im = imagecreate(150, 150);
// White background and blue text
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocatealpha($im, 100, 100, 100, 100);
// Write the string at the top left
imagestring($im, $fontsize, 0, 0, $string, $textcolor);
//imagettftext($im, $fontsize, 0, 0, $fontsize, $textcolor, $font, $string);
// Output the image
//header('Content-type: image/png');
$im = imagerotate($im,45,0);
$target = "./test1.png";
imagepng($im, $target, 9);
# 출력 후 이미지를 메모리에서 지운다.
imagedestroy($im);
?>
<img src="<?=$target?>">
/////////////////////////////////////////////////////////////////////////////
<?php
// watermark.php
# 접속자 IP 주소를 불러온다.
$text = "admin";
# 이미지를 생성한다.
# imagecreate(int width, int height);
$im = imagecreate(360, 300);
# 이미지 배경색을 설정한다.
# imagecolorallocate(생성 이미지, int red, int green, int blue, int alpha);
# RGB 색상 범위는 0~255 / alpha 범위는 0~127(투명)
$bg = imagecolorallocatealpha($im, 100, 100, 100, 127);
# PNG로 내보내기 위해 헤더를 설정한다.
//header("Content-Type: image/png");
# 개수를 바꾸려면 '$i <= 10;'의 10을 줄이거나 늘리면 된다.
# 삽입할 글자(IP 주소)의 색을 설정한다.
# rand();를 사용해 글자색과 알파값을 무작위로 나오게 했다.
$tc = imagecolorallocatealpha($im, 100, 100, 100, 100);
# 이미지에 글자(IP 주소)를 넣는다.
# imagestring(생성 이미지, 글자크기[1-5], 가로위치, 세로위치, 표시할 문자, 글자색);
# rand();를 사용해 글자가 표시될 위치를 무작위로 나오게 했다.
imagestring($im, 15, 100, 100, $text, $tc);
# 만든 이미지를 PNG로 내보내 출력한다.
# imagepng(생성 이미지, 저장할 경로, 압축률, 필터);
# 경로를 지정하지 않으면 NULL, 압축률은 0~9
# 경로, 압축률, 필터는 생략해도 된다.
$target = "./test.png";
imagepng($im, $target, 9);
# 출력 후 이미지를 메모리에서 지운다.
imagedestroy($im);
?>
<img src="<?=$target?>">
해당 워터마크를 사용할 페이지에 위소스 적용
'사이트관리' 카테고리의 다른 글
탭메뉴 셈플 (0) | 2018.10.18 |
---|---|
비밀번호 찾기시 발생하는 문제점 (0) | 2018.10.10 |
html 태그를 숨긴 스팸게시글 처리 보완 (0) | 2018.10.03 |
html 색상표 (0) | 2018.09.15 |
특정 게시판을 홈페이지 초기화면으로 (0) | 2018.08.22 |
그누보드 파일구조 설명 (0) | 2018.08.18 |
검색엔진에서 방문하는 다양한 bot (0) | 2018.08.14 |
댓글작성시 원글작성자에게 메일보내기 (0) | 2018.07.07 |