R

GD 를 이용한 테이블 포토 (imagecolorat)

저녁에 문득 생각나서 ..ㅋㅋ
이미지의 좌표별 색상값을 뽑아 내어 테이블로 똑같은 이미지를 만들수 있지 않을까하는 생각에  시도해보았습니다.
아래 이미지는 결과물입니다.
익스에서는 제대로 된값이 나오질 않더군요..^^
조그만 이미지 도 제대로 값을 출력해내지 못하고 있네요.
아래 이미지는 파폭에서 600 400 픽셀 이미지로 테스트 한 결과 입니다.
파폭도 완벽하게 출력해내지는 못합니다.
위쪽 파란색 테두리의 이미지가 원본이며 아래 이미지는 테이블로 만들어진 이미지 입니다.



아하 php 쏘스 입니다.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

<?
 
$imgdir = "p.jpg"; // 이미지 경로를 적어주시면됩니다.

list($width, $height, $type, $attr) = getimagesize($imgdir); // 이미지 사이즈 및 타입을 구함.
$im = imagecreatefromjpeg($imgdir); 
 
function getimgcolorat($x, $y){
 global $type, $im;
 
 $rgb = imagecolorat($im, $x, $y); // 이미지에서 좌표값의 색상을 뽑아온다.
 //unset($im);
 return dechex($rgb);
 unset($rgb);
}
 
 $color = array();
 $c = 0;
 for($y=0; $y<$height; $y++){
  for($x=0; $x<$width; $x++){ 
   $imgcolor = getimgcolorat($x, $y);
   
   $key = $x.$y;
   if($data[$imgcolor]){
    $sellcolor[$key] = $data[$imgcolor];
   }else{
    $color[$c] = $imgcolor;
    $data[$imgcolor] = $c;
    $sellcolor[$key] = $c;
    $c++;
   }
   unset($imgcolor);
  }
 }
 unset($data);
 
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>Untitled Document</title>
<style type="text/css">
<!--
.ts {
 width: 1px;
 height: 1px;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="10" cellpadding="10">
  <tr>
    <td bgcolor="#0099FF"><img src="<?=$imgdir?>" width="<?=$width?>" height="<?=$height?>"></td>
  </tr>
  <tr>
    <td>

   
    <table width="<?=$width?>" border="0" cellspacing="0" cellpadding="0">
    <?
 for($y=0; $y<$height; $y++){
  echo "<tr>";
  for($x=0; $x<$width; $x++){ 
   $key = $x.$y;
   $bgcolor = $color[$sellcolor[$key]];
   echo "<td bgcolor=\"#{$bgcolor}\" class=\"ts\"></td>";
  }
  echo "</tr>";
 }
 
 ?>
    </table>
   
    </td>
  </tr>
</table>
</body>
</html>

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|

댓글 3개

성능 테스트 용으로 좋겠습니다. ^^
멋지네요.. ^^

이미지 복제 시간은 많이 안 걸리나요?
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
16년 전 조회 2,453
16년 전 조회 2,041
16년 전 조회 2,244
16년 전 조회 2,747
16년 전 조회 1,812
16년 전 조회 2,749
16년 전 조회 2,068
16년 전 조회 2,210
16년 전 조회 1,852
16년 전 조회 2,551
16년 전 조회 1,865
16년 전 조회 2,288
16년 전 조회 2,442
16년 전 조회 1,543
16년 전 조회 1,606
16년 전 조회 2,256
16년 전 조회 5,677
16년 전 조회 1,981
16년 전 조회 2,502
16년 전 조회 2,693
16년 전 조회 1,858
16년 전 조회 1,631
16년 전 조회 2,561
16년 전 조회 5,282
16년 전 조회 2,552
16년 전 조회 3,216
16년 전 조회 2,078
16년 전 조회 3,951
16년 전 조회 4,782
16년 전 조회 3,421
16년 전 조회 2,658
16년 전 조회 2,772
16년 전 조회 3,000
16년 전 조회 2,523
16년 전 조회 5,876
16년 전 조회 3,704
16년 전 조회 1,690
16년 전 조회 2,032
16년 전 조회 5,393
16년 전 조회 2,656
16년 전 조회 3,720
16년 전 조회 3,005
16년 전 조회 1,880
16년 전 조회 5,706
16년 전 조회 2,820
16년 전 조회 6,304
16년 전 조회 2,275
16년 전 조회 4,324
16년 전 조회 3,348
16년 전 조회 2,536
16년 전 조회 2,547
16년 전 조회 4,695
16년 전 조회 3,615
16년 전 조회 3,142
16년 전 조회 3,286
16년 전 조회 2,412
16년 전 조회 2,068
16년 전 조회 2,005
16년 전 조회 1,704
16년 전 조회 2,010
16년 전 조회 2,210
16년 전 조회 1,911
16년 전 조회 5,160
16년 전 조회 4,162
16년 전 조회 2,093
16년 전 조회 1,864
16년 전 조회 2,588
16년 전 조회 4,857
16년 전 조회 3,861
16년 전 조회 2,902
16년 전 조회 4,631
16년 전 조회 3,503
16년 전 조회 1,663
16년 전 조회 1,693
16년 전 조회 2,345
16년 전 조회 2,196
16년 전 조회 2,910
16년 전 조회 2,528
16년 전 조회 1,663
16년 전 조회 4,702
16년 전 조회 1,790
16년 전 조회 2,091
16년 전 조회 2,520
16년 전 조회 4,178
16년 전 조회 3,071
16년 전 조회 1,792
16년 전 조회 4,343
16년 전 조회 1,710
16년 전 조회 1,876
16년 전 조회 1,558
16년 전 조회 2,021
16년 전 조회 1,933
16년 전 조회 1,935
16년 전 조회 1,719
16년 전 조회 2,476
16년 전 조회 2,101
16년 전 조회 2,273
16년 전 조회 2,500
16년 전 조회 1,774
16년 전 조회 2,649