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,435
16년 전 조회 2,020
16년 전 조회 2,219
16년 전 조회 2,723
16년 전 조회 1,801
16년 전 조회 2,731
16년 전 조회 2,054
16년 전 조회 2,195
16년 전 조회 1,831
16년 전 조회 2,532
16년 전 조회 1,848
16년 전 조회 2,273
16년 전 조회 2,429
16년 전 조회 1,523
16년 전 조회 1,590
16년 전 조회 2,243
16년 전 조회 5,659
16년 전 조회 1,959
16년 전 조회 2,484
16년 전 조회 2,679
16년 전 조회 1,840
16년 전 조회 1,619
16년 전 조회 2,550
16년 전 조회 5,266
16년 전 조회 2,538
16년 전 조회 3,199
16년 전 조회 2,065
16년 전 조회 3,937
16년 전 조회 4,768
16년 전 조회 3,406
16년 전 조회 2,640
16년 전 조회 2,753
16년 전 조회 2,984
16년 전 조회 2,499
16년 전 조회 5,866
16년 전 조회 3,685
16년 전 조회 1,675
16년 전 조회 2,019
16년 전 조회 5,378
16년 전 조회 2,642
16년 전 조회 3,707
16년 전 조회 2,999
16년 전 조회 1,866
16년 전 조회 5,695
16년 전 조회 2,808
16년 전 조회 6,284
16년 전 조회 2,256
16년 전 조회 4,311
16년 전 조회 3,328
16년 전 조회 2,521
16년 전 조회 2,529
16년 전 조회 4,690
16년 전 조회 3,596
16년 전 조회 3,125
16년 전 조회 3,270
16년 전 조회 2,399
16년 전 조회 2,052
16년 전 조회 1,982
16년 전 조회 1,690
16년 전 조회 1,994
16년 전 조회 2,198
16년 전 조회 1,897
16년 전 조회 5,139
16년 전 조회 4,152
16년 전 조회 2,081
16년 전 조회 1,851
16년 전 조회 2,574
16년 전 조회 4,851
16년 전 조회 3,842
16년 전 조회 2,883
16년 전 조회 4,613
16년 전 조회 3,486
16년 전 조회 1,648
16년 전 조회 1,674
16년 전 조회 2,328
16년 전 조회 2,181
16년 전 조회 2,902
16년 전 조회 2,515
16년 전 조회 1,645
16년 전 조회 4,690
16년 전 조회 1,779
16년 전 조회 2,080
16년 전 조회 2,498
16년 전 조회 4,167
16년 전 조회 3,060
16년 전 조회 1,774
16년 전 조회 4,336
16년 전 조회 1,695
16년 전 조회 1,863
16년 전 조회 1,543
16년 전 조회 1,999
16년 전 조회 1,917
16년 전 조회 1,922
16년 전 조회 1,703
16년 전 조회 2,463
16년 전 조회 2,084
16년 전 조회 2,260
16년 전 조회 2,482
16년 전 조회 1,761
16년 전 조회 2,637