<?php
//직선 그리기
function imageline_bresenham(& $im, $startX, $startY, $endX, $endY, $color){
//기준점 계산, 작은 쪽이 출발점, 큰쪽이 도착점
if($endX < $startX){
$dx = $startX - $endX;
$tmpX = $endX;
$tmpgoX = $startX;
}
else{
$dx = $endX - $startX;
$tmpX = $startX;
$tmpgoX = $endX;
}
if($endY < $startY){
$dy = $startY - $endY;
$tmpY = $endY;
$tmpgoY = $startY;
}
else{
$dy = $endY - $startY;
$tmpY = $startY;
$tmpgoY = $endY;
}
/* 기울기에 따른 계산*/
if($dx >= $dy) { //기울기가 1보다 작거나 같을때
$d = $dy * 2 - $dx; //d의 값을 초기화
$incrE = $dy * 2; // E로의 이동을 위해서 쓰이는 증가
$incrNE = ($dy - $dx) * 2; // NE로의 이동을 위해서 쓰이는 증가
$start = $tmpX;
$end = $tmpgoX;
}
else { //기울기가 1보다 클때
$d = $dx * 2 - $dy;
$incrE = $dx * 2;
$incrNE = ($dx - $dy) * 2;
$start = $tmpY;
$end = $tmpgoY;
}
//x, y 좌표 초기화
$x = $startX;
$y = $startY;
imagesetpixel($im, $x, $y, $color);//시작점 찍음
while($start < $end) {
if( $d <= 0) { /*D값이 0보다 작으면 E를 선택 하나의 축만 이동*/
$d += $incrE;
if($dx >= $dy) { // 기울기가 1보다 작을때 X좌표만 증가
if($endX < $startX)
$x--;
else
$x++;
}
else { // 기울기가 1보다 클때 Y좌표만 증가
if($endY < $startY)
$y--;
else
$y++;
}
}
else { /*D값이 0보다 클때 NE를 선택 X,Y 를 같이 이동시킨다.*/
$d += $incrNE;
if($endX < $startX)
$x--;
else
$x++;
if($endY < $startY)
$y--;
else
$y++;
}
imagesetpixel($im, $x, $y, $color);
$start ++;
}
}
function imagearc_bresenham(& $im, $centerX, $centerY, $width, $height, $color) {
$w_r = ceil($width / 2);
$h_r = ceil($height / 2);
$x = 0;
$y = $h_r;
$w_r_square = $w_r * $w_r;
$h_r_square = $h_r * $h_r;
$d = (4 * $h_r_square + $w_r_square * (1 - (4 * $h_r))) / 4;
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y , $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
// $x 독립변수 구간
while($h_r_square * $x < $w_r_square * $y){
++$x;
if($d < 0){
$d += $h_r_square * (2 * $x + 1);
}
else {
--$y;
$d += $h_r_square * (2 * $x + 1) - (2 * $w_r_square * $y);
}
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y, $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
}
// $y 독립변수 구간
$x = $w_r;
$y = 0;
$d = (4 * $w_r_square + $h_r_square * (1 - (4 * $w_r))) / 4;
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y, $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
while($h_r_square * $x > $w_r_square * $y){
++$y;
if($d < 0){
$d += $w_r_square * (2 * $y + 1);
}
else {
--$x;
$d += $w_r_square * (2 * $y + 1) - (2 * $h_r_square * $x);
}
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y, $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
}
}
$w = 400;
$h = 800;
$im = imagecreatetruecolor($w, $h);
$red = imagecolorallocate($im, 255, 0, 0);
imageline_bresenham($im, 200, 200, 100, 0, $red);
imageline_bresenham($im, 200, 200, 400, 100, $red);
imageline_bresenham($im, 200, 200, 400, 200, $red);
imageline_bresenham($im, 200, 200, 400, 300, $red);
imagearc_bresenham($im, 200, 200, 180, 360, $red);
imagearc_bresenham($im, 100, 200, 200, 200, $red);
imageline($im, 200, 600, 100, 400, $red);
imageline($im, 200, 600, 400, 500, $red);
imageline($im, 200, 600, 400, 600, $red);
imageline($im, 200, 600, 400, 700, $red);
imagearc($im, 200, 600, 180, 360, 0, 360, $red);
imagearc($im, 100, 600, 200, 200, 0, 360, $red);
header('Content-Type: image/png');
imagepng($im);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7530 | 10년 전 | 815 | ||
| 7529 |
파랑새1597
|
10년 전 | 1231 | |
| 7528 |
파랑새1597
|
10년 전 | 1327 | |
| 7527 |
integrity7
|
10년 전 | 1407 | |
| 7526 | 10년 전 | 2433 | ||
| 7525 |
다빈치코드777
|
10년 전 | 1118 | |
| 7524 | 10년 전 | 1585 | ||
| 7523 | 10년 전 | 974 | ||
| 7522 |
|
10년 전 | 1004 | |
| 7521 |
blackkil
|
10년 전 | 1888 | |
| 7520 | 10년 전 | 1306 | ||
| 7519 |
Gaumi
|
10년 전 | 1089 | |
| 7518 | 10년 전 | 1497 | ||
| 7517 | 10년 전 | 840 | ||
| 7516 | 10년 전 | 1308 | ||
| 7515 | 10년 전 | 1422 | ||
| 7514 |
|
10년 전 | 4497 | |
| 7513 |
멋진남자임
|
10년 전 | 1139 | |
| 7512 |
다빈치코드777
|
10년 전 | 885 | |
| 7511 |
|
10년 전 | 3413 | |
| 7510 | 10년 전 | 1379 | ||
| 7509 | 10년 전 | 1155 | ||
| 7508 | 10년 전 | 724 | ||
| 7507 |
senseme
|
10년 전 | 761 | |
| 7506 |
멋진남자임
|
10년 전 | 1658 | |
| 7505 | 10년 전 | 4029 | ||
| 7504 | 10년 전 | 2163 | ||
| 7503 | 10년 전 | 999 | ||
| 7502 | 10년 전 | 526 | ||
| 7501 | 10년 전 | 1453 | ||
| 7500 | 10년 전 | 1503 | ||
| 7499 | 10년 전 | 3408 | ||
| 7498 | 10년 전 | 1240 | ||
| 7497 |
dethos79
|
10년 전 | 2971 | |
| 7496 | 10년 전 | 2173 | ||
| 7495 | 10년 전 | 902 | ||
| 7494 |
CHAVO
|
10년 전 | 1146 | |
| 7493 | 10년 전 | 2661 | ||
| 7492 | 10년 전 | 1292 | ||
| 7491 | 10년 전 | 1501 | ||
| 7490 | 10년 전 | 2349 | ||
| 7489 | 10년 전 | 2127 | ||
| 7488 |
toptopon
|
10년 전 | 905 | |
| 7487 |
|
10년 전 | 1046 | |
| 7486 | 10년 전 | 3368 | ||
| 7485 | 10년 전 | 1325 | ||
| 7484 | 10년 전 | 1382 | ||
| 7483 | 10년 전 | 1041 | ||
| 7482 | 10년 전 | 670 | ||
| 7481 | 10년 전 | 865 | ||
| 7480 | 10년 전 | 1241 | ||
| 7479 | 10년 전 | 2616 | ||
| 7478 | 10년 전 | 1181 | ||
| 7477 |
멋진남자임
|
10년 전 | 1532 | |
| 7476 |
zeppeto
|
10년 전 | 1149 | |
| 7475 |
200점아빠
|
10년 전 | 923 | |
| 7474 | 10년 전 | 4014 | ||
| 7473 | 10년 전 | 1006 | ||
| 7472 |
나르시스1
|
10년 전 | 1257 | |
| 7471 | 10년 전 | 885 | ||
| 7470 | 10년 전 | 1302 | ||
| 7469 |
플라이SINJI
|
10년 전 | 998 | |
| 7468 |
|
10년 전 | 567 | |
| 7467 |
|
10년 전 | 680 | |
| 7466 | 10년 전 | 1140 | ||
| 7465 | 10년 전 | 1198 | ||
| 7464 |
|
10년 전 | 1209 | |
| 7463 | 10년 전 | 1269 | ||
| 7462 |
진짜별사탕
|
10년 전 | 875 | |
| 7461 | 10년 전 | 963 | ||
| 7460 | 10년 전 | 3754 | ||
| 7459 |
멋진남자임
|
10년 전 | 1569 | |
| 7458 |
멋진남자임
|
10년 전 | 495 | |
| 7457 | 10년 전 | 930 | ||
| 7456 | 10년 전 | 776 | ||
| 7455 | 10년 전 | 2183 | ||
| 7454 | 10년 전 | 641 | ||
| 7453 | 10년 전 | 845 | ||
| 7452 |
중국어사이트제작
|
10년 전 | 512 | |
| 7451 | 10년 전 | 920 | ||
| 7450 | 10년 전 | 641 | ||
| 7449 |
울라라라우
|
10년 전 | 961 | |
| 7448 | 10년 전 | 1641 | ||
| 7447 |
멋진남자임
|
10년 전 | 517 | |
| 7446 | 10년 전 | 561 | ||
| 7445 |
네이비칼라
|
10년 전 | 1694 | |
| 7444 |
senseme
|
10년 전 | 1418 | |
| 7443 | 10년 전 | 1352 | ||
| 7442 | 10년 전 | 738 | ||
| 7441 |
멋진남자임
|
10년 전 | 1450 | |
| 7440 | 10년 전 | 924 | ||
| 7439 |
|
10년 전 | 778 | |
| 7438 |
|
10년 전 | 952 | |
| 7437 |
basement
|
10년 전 | 1047 | |
| 7436 |
잘살아보자
|
11년 전 | 1145 | |
| 7435 | 11년 전 | 1098 | ||
| 7434 | 11년 전 | 3799 | ||
| 7433 |
|
11년 전 | 2759 | |
| 7432 |
alexkim
|
11년 전 | 870 | |
| 7431 |
이웃집초보
|
11년 전 | 1323 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기