<?php
//이미지 처리 함수 인클루드
include_once 'lib/image_proc.function.php';
$path_file = 'sample_image/test.jpg';//원본파일
$path_mark_file ='sample_image/php.png';//워터마크에 사용할 파일
$path_save_file = 'sample_image/watermak.jpg';//워터마크 처리한 것을 저장할 파일
//원본의 이미지 리소스를 받아온다.
list($src, $src_w, $src_h) = get_image_resource_from_file ($path_file);
if (empty($src)) die($GLOBALS['errormsg'] . "<br />\n");
//워터마크에 사용될 이미지 리소스를 받아온다.
list($mark, $mark_w, $mark_h) = get_image_resource_from_file ($path_mark_file);
if (empty($mark)) die($GLOBALS['errormsg'] . "<br />\n");
//원본의 왼쪽 꼭지점을 기준점으로 선명도 60으로 워터마크 처리
$result_watermark = imagecopymerge($src, $mark, 0, 0, 0, 0, $mark_w, $mark_h, 60);
if ($result_watermark === false) die("워터마크 처리에 실패하였습니다.<br />\n");
$result_save = save_image_from_resource ($src, $path_save_file);//저장
if ($result_save === false) die($GLOBALS['errormsg'] . "<br />\n");
@imagedestroy($mark);
@imagedestroy($src);
//성공하였다면 이미지 출력
?>
원본 이미지 <br />
<img src='<?=$path_file?>'> <br />
워터마크에 사용할 이미지 <br />
<img src='<?=$path_mark_file?>'> <br />
워터마크 처리한 이미지 <br />
<img src='<?=$path_save_file?>'> <br />
//이미지 처리 함수 인클루드
include_once 'lib/image_proc.function.php';
$path_file = 'sample_image/test.jpg';//원본파일
$path_mark_file ='sample_image/php.png';//워터마크에 사용할 파일
$path_save_file = 'sample_image/watermak.jpg';//워터마크 처리한 것을 저장할 파일
//원본의 이미지 리소스를 받아온다.
list($src, $src_w, $src_h) = get_image_resource_from_file ($path_file);
if (empty($src)) die($GLOBALS['errormsg'] . "<br />\n");
//워터마크에 사용될 이미지 리소스를 받아온다.
list($mark, $mark_w, $mark_h) = get_image_resource_from_file ($path_mark_file);
if (empty($mark)) die($GLOBALS['errormsg'] . "<br />\n");
//원본의 왼쪽 꼭지점을 기준점으로 선명도 60으로 워터마크 처리
$result_watermark = imagecopymerge($src, $mark, 0, 0, 0, 0, $mark_w, $mark_h, 60);
if ($result_watermark === false) die("워터마크 처리에 실패하였습니다.<br />\n");
$result_save = save_image_from_resource ($src, $path_save_file);//저장
if ($result_save === false) die($GLOBALS['errormsg'] . "<br />\n");
@imagedestroy($mark);
@imagedestroy($src);
//성공하였다면 이미지 출력
?>
원본 이미지 <br />
<img src='<?=$path_file?>'> <br />
워터마크에 사용할 이미지 <br />
<img src='<?=$path_mark_file?>'> <br />
워터마크 처리한 이미지 <br />
<img src='<?=$path_save_file?>'> <br />
참고 : http://kr2.php.net/manual/kr/function.ceil.php
댓글 2개
takumi22
12년 전
유창화님 강의네요 ~~
12년 전
감사합니다
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 635 | ||
| 7629 |
|
10년 전 | 2346 | |
| 7628 | 10년 전 | 768 | ||
| 7627 |
|
10년 전 | 1000 | |
| 7626 |
|
10년 전 | 1759 | |
| 7625 | 10년 전 | 660 | ||
| 7624 | 10년 전 | 682 | ||
| 7623 |
|
10년 전 | 3008 | |
| 7622 | 10년 전 | 695 | ||
| 7621 |
leeleeleelee
|
10년 전 | 569 | |
| 7620 | 10년 전 | 528 | ||
| 7619 | 10년 전 | 457 | ||
| 7618 | 10년 전 | 997 | ||
| 7617 | 10년 전 | 713 | ||
| 7616 | 10년 전 | 613 | ||
| 7615 | 10년 전 | 711 | ||
| 7614 | 10년 전 | 1213 | ||
| 7613 |
|
10년 전 | 2052 | |
| 7612 | 10년 전 | 1124 | ||
| 7611 | 10년 전 | 1385 | ||
| 7610 |
|
10년 전 | 1874 | |
| 7609 |
|
10년 전 | 1290 | |
| 7608 |
mwdkim
|
10년 전 | 1097 | |
| 7607 |
|
10년 전 | 1022 | |
| 7606 |
mwdkim
|
10년 전 | 3903 | |
| 7605 | 10년 전 | 669 | ||
| 7604 | 10년 전 | 1005 | ||
| 7603 | 10년 전 | 1629 | ||
| 7602 |
|
10년 전 | 1041 | |
| 7601 |
AniNest
|
10년 전 | 2762 | |
| 7600 |
port443
|
10년 전 | 999 | |
| 7599 | 10년 전 | 922 | ||
| 7598 | 10년 전 | 991 | ||
| 7597 | 10년 전 | 4553 | ||
| 7596 |
SeungYeon
|
10년 전 | 868 | |
| 7595 |
untitled
|
10년 전 | 2393 | |
| 7594 |
프로그래머7
|
10년 전 | 1700 | |
| 7593 |
untitled
|
10년 전 | 2337 | |
| 7592 |
untitled
|
10년 전 | 1915 | |
| 7591 |
untitled
|
10년 전 | 2652 | |
| 7590 |
아리마2001
|
10년 전 | 823 | |
| 7589 | 10년 전 | 1082 | ||
| 7588 |
|
10년 전 | 2900 | |
| 7587 | 10년 전 | 1278 | ||
| 7586 | 10년 전 | 641 | ||
| 7585 | 10년 전 | 1661 | ||
| 7584 | 10년 전 | 1395 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1137 | |
| 7582 |
|
10년 전 | 1073 | |
| 7581 | 10년 전 | 1303 | ||
| 7580 | 10년 전 | 945 | ||
| 7579 |
|
10년 전 | 584 | |
| 7578 | 10년 전 | 1397 | ||
| 7577 |
|
10년 전 | 1852 | |
| 7576 | 10년 전 | 1368 | ||
| 7575 |
멋진남자임
|
10년 전 | 1447 | |
| 7574 | 10년 전 | 2088 | ||
| 7573 | 10년 전 | 3220 | ||
| 7572 | 10년 전 | 749 | ||
| 7571 |
|
10년 전 | 771 | |
| 7570 |
|
10년 전 | 1295 | |
| 7569 | 10년 전 | 1523 | ||
| 7568 |
this1mg
|
10년 전 | 1023 | |
| 7567 |
|
10년 전 | 732 | |
| 7566 | 10년 전 | 901 | ||
| 7565 |
Angel하늘
|
10년 전 | 966 | |
| 7564 |
seoldi
|
10년 전 | 1207 | |
| 7563 |
|
10년 전 | 1352 | |
| 7562 |
멋진남자임
|
10년 전 | 2046 | |
| 7561 | 10년 전 | 684 | ||
| 7560 |
leeleeleelee
|
10년 전 | 882 | |
| 7559 | 10년 전 | 5012 | ||
| 7558 |
RinaP
|
10년 전 | 755 | |
| 7557 |
|
10년 전 | 1222 | |
| 7556 | 10년 전 | 1171 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1635 | |
| 7554 | 10년 전 | 1075 | ||
| 7553 |
senseme
|
10년 전 | 1321 | |
| 7552 |
ehdltdoit
|
10년 전 | 1416 | |
| 7551 |
|
10년 전 | 1801 | |
| 7550 |
leeleeleelee
|
10년 전 | 1565 | |
| 7549 | 10년 전 | 2395 | ||
| 7548 | 10년 전 | 1815 | ||
| 7547 |
멋진남자임
|
10년 전 | 1928 | |
| 7546 | 10년 전 | 968 | ||
| 7545 |
ILMare1003
|
10년 전 | 1258 | |
| 7544 |
|
10년 전 | 1211 | |
| 7543 | 10년 전 | 863 | ||
| 7542 | 10년 전 | 636 | ||
| 7541 |
울라라라우
|
10년 전 | 850 | |
| 7540 | 10년 전 | 1583 | ||
| 7539 | 10년 전 | 904 | ||
| 7538 |
|
10년 전 | 1815 | |
| 7537 | 10년 전 | 3591 | ||
| 7536 |
Gaumi
|
10년 전 | 1389 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1246 | |
| 7534 |
senseme
|
10년 전 | 1195 | |
| 7533 | 10년 전 | 1172 | ||
| 7532 | 10년 전 | 836 | ||
| 7531 | 10년 전 | 2029 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기