Global It Leader!!



 
 

PHP 이미지에 로고 삽입하기(워터마크)

페이지 정보

작성자 no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 1건 조회 5,622회 작성일 12-04-22 03:20

본문

<?php
$image = imagecreatefromjpeg("img.jpg");
$copyright = imagecreatefrompng("logo.png");

$img_width = imagesx($image);
$img_height = imagesy($image);
$cr_width = imagesx($copyright);
$cr_height = imagesy($copyright);

$x = $img_width - cr_width - 10;
$y = $img_height - cr_height - 10;

imagecopy($image, $copyright, $x, $y, 0, 0, $cr_width, $cr_height);

header("Content-type: image/jpeg");
imagejpeg($image);
imagedestroy($image);
imagedestroy($copyright);
?>

댓글목록

오원장님의 댓글

no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일

#######################################################
// 썸네일 이미지 만들기
// 일단 가로, 세로 중 큰 사이즈를 100으로 잡고 다른 사이즈를 같은
// 비율로 줄여야만 이미지가 찌그러지지 않음.

if($image_size[0] > $image_size[1]) {

  $x_size = 100; // 기본크기를 100으로 지정
  $y_size = intval($x_size/$image_size[0] * $image_size[1]);

  $x_start = 0;
  $y_start = intval(($x_size - $y_size) / 2);

  if($y_start < 0) $y_start = 0;

} else {
  $y_size = 100;
  $x_size = intval($y_size/$image_size[1] * $image_size[0]);
  $y_start = 0;
  $x_start = intval(($y_size - $x_size) / 2);
  if($x_start < 0) $x_start = 0;
}

$thumb = imagecreate($x_size,$y_size);
if($image_size[2] < 4) imagecopyresized($thumb, $image2, 0, 0, 0, 0, $x_size, $y_size, $image_size[0], $image_size[1]);

$tmp_image_name = "$photo_dir/sub/photo.gif";

// 썸네일 이미지 저장
if($image_size[2] == 1) imagegif($thumb, $tmp_image_name);
elseif($image_size[2] == 2) imagejpeg($thumb, $tmp_image_name);
elseif($image_size[2] == 3) imagepng($thumb, $tmp_image_name);
elseif($image_size[2] == 4)  {
}

전체 440
게시물 검색
컴퓨터언어 목록
번호 제목 글쓴이 조회 날짜
140 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6359 04-24
139 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5812 04-24
138 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9227 04-22
137 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5698 04-22
136 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5086 04-22
135 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5090 04-22
열람중 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5623 04-22
133 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7000 04-20
132 HTML no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6895 04-20
131 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5010 04-20
130 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4748 04-19
129 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5151 04-19
128 CSS no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5237 04-17
127 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4817 04-17
126 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4928 04-11
125 PHP no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4862 04-07
124 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5128 04-01
123 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5601 04-01
122 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 4913 03-31
121 Javasript no_profile 오원장 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5075 03-22